From 2a5f8433b8e1677119e7587a9fdd02b391f62b9d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Wed, 6 May 2020 21:28:59 +0530 Subject: [PATCH] Ignore false lint issue --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 19a5ea52..466f625d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -2897,7 +2897,7 @@ static size_t mkpath(const char *dir, const char *name, char *out) size_t len; /* Handle absolute path */ - if (name[0] == '/') + if (name[0] == '/') // NOLINT return xstrsncpy(out, name, PATH_MAX); /* Handle root case */