Commit cab6fc1b authored by Chuck Lever's avatar Chuck Lever Committed by Trond Myklebust

lockd: Eliminate harmless mixed sign comparison in nlmdbg_cookie2a()

The cookie->len field is unsigned, so the loop index variable in
nlmdbg_cookie2a() should also be unsigned.
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 3d509e54
...@@ -612,8 +612,7 @@ const char *nlmdbg_cookie2a(const struct nlm_cookie *cookie) ...@@ -612,8 +612,7 @@ const char *nlmdbg_cookie2a(const struct nlm_cookie *cookie)
* called with BKL held. * called with BKL held.
*/ */
static char buf[2*NLM_MAXCOOKIELEN+1]; static char buf[2*NLM_MAXCOOKIELEN+1];
int i; unsigned int i, len = sizeof(buf);
int len = sizeof(buf);
char *p = buf; char *p = buf;
len--; /* allow for trailing \0 */ len--; /* allow for trailing \0 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment