From 6a52ce38f9d36bd6f411eea2013aac7cc3ab938f Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 18 May 1987 14:16:41 +0000 Subject: [PATCH] botch and clear have an unsigned as second arg --- modules/src/alloc/botch.c | 2 +- modules/src/alloc/clear.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1