Ignore wrong lint report

This commit is contained in:
Arun Prakash Jana 2019-03-08 03:23:23 +05:30
parent 879beb70cf
commit e76a929710
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ static size_t xstrlcpy(char *dest, const char *src, size_t n)
dest = (char *)d;
}
while (--n && (*dest = *src))
while (--n && (*dest = *src)) // NOLINT
++dest, ++src;
if (!n)