Browse Source

Fix build break

master
Arun Prakash Jana 4 years ago
parent
commit
cd1c458c96
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c View File

@@ -936,7 +936,7 @@ static size_t xstrsncpy(char *restrict dst, const char *restrict src, size_t n)
char *end = memccpy(dst, src, '\0', n);

if (!end) {
dst[n - 1] = '\0';
dst[n - 1] = '\0'; // NOLINT
end = dst + n;
}



Loading…
Cancel
Save