From: mar Date: Wed, 10 Nov 1993 15:32:24 +0000 (+0000) Subject: lint X-Git-Tag: release77~75 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/245f8a92a68015a715f4821b4a32b4c39a00d8d7 lint --- diff --git a/server/mr_util.c b/server/mr_util.c index ca0c888d..9926446e 100644 --- a/server/mr_util.c +++ b/server/mr_util.c @@ -111,7 +111,7 @@ char **argv; register unsigned char *p, *lastch; for (arg = argv; argc--; arg++) { - for (lastch = p = *arg; *p; p++) { + for (lastch = p = (unsigned char *) *arg; *p; p++) { /* If any byte in the string has the high bit set, assume * that it is binary and we do not want to trim it. * Setting p = lastch will cause us not to trim the string