From: ceriel Date: Mon, 18 May 1987 14:16:41 +0000 (+0000) Subject: botch and clear have an unsigned as second arg X-Git-Tag: release-5-5~4124 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=6a52ce38f9d36bd6f411eea2013aac7cc3ab938f;p=ack.git botch and clear have an unsigned as second arg --- diff --git a/modules/src/alloc/botch.c b/modules/src/alloc/botch.c index c47c67d50..26fa9f129 100644 --- a/modules/src/alloc/botch.c +++ b/modules/src/alloc/botch.c @@ -12,7 +12,7 @@ EXPORT botch(ptr, n) register char *ptr; - register int n; + register unsigned int n; { while (n >= sizeof (long)) { /* high-speed botch loop */ diff --git a/modules/src/alloc/clear.c b/modules/src/alloc/clear.c index bc83bed01..fd5ee7a86 100644 --- a/modules/src/alloc/clear.c +++ b/modules/src/alloc/clear.c @@ -12,7 +12,7 @@ EXPORT clear(ptr, n) register char *ptr; - register int n; + register unsigned int n; { register long *q = (long *) ptr;