]> Sergey Matveev's repositories - nnn.git/commitdiff
Minor modifications
authorArun Prakash Jana <engineerarun@gmail.com>
Sat, 15 Dec 2018 08:11:33 +0000 (13:41 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Sat, 15 Dec 2018 08:11:33 +0000 (13:41 +0530)
src/nnn.c

index 4f7557468a35d139bde6f6a6aaeff57fce8dbe33..ffae7cbb2a2e666b89360ef01a1fd2d47555fd1b 100644 (file)
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -515,7 +515,7 @@ static rlim_t max_openfds()
  *
  * As per the docs, the *alloc() family is supposed to be memory aligned:
  * Ubuntu: http://manpages.ubuntu.com/manpages/xenial/man3/malloc.3.html
- * OS X: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
+ * macOS: https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man3/malloc.3.html
  */
 static void *xrealloc(void *pcur, size_t len)
 {
@@ -554,7 +554,8 @@ static size_t xstrlcpy(char *dest, const char *src, size_t n)
         * To enable -O3 ensure src and dest are 16-byte aligned
         * More info: http://www.felixcloutier.com/x86/MOVDQA.html
         */
-       if ((n >= lsize) && (((ulong)src & _ALIGNMENT_MASK) == 0 && ((ulong)dest & _ALIGNMENT_MASK) == 0)) {
+       if ((n >= lsize) && (((ulong)src & _ALIGNMENT_MASK) == 0 &&
+           ((ulong)dest & _ALIGNMENT_MASK) == 0)) {
                s = (ulong *)src;
                d = (ulong *)dest;
                blocks = n >> _WSHIFT;
@@ -681,9 +682,8 @@ static char *xbasename(char *path)
 /* Writes buflen char(s) from buf to a file */
 static void writecp(const char *buf, const size_t buflen)
 {
-       if (cfg.pickraw) {
+       if (cfg.pickraw)
                return;
-       }
 
        if (!g_cppath[0]) {
                printmsg(messages[STR_COPY_ID]);