Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -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 */