From: keie Date: Mon, 21 Jan 1985 14:22:07 +0000 (+0000) Subject: Changed the argument of salloc from an int into an unsigned. X-Git-Tag: release-5-5~5749 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d53ef52028f8d23f6a12bea3bb5f6808983fe7e7;p=ack.git Changed the argument of salloc from an int into an unsigned. Just to shut up lint. --- diff --git a/lang/basic/src.old/util.c b/lang/basic/src.old/util.c index 56851c4e0..bf9fcad36 100644 --- a/lang/basic/src.old/util.c +++ b/lang/basic/src.old/util.c @@ -61,12 +61,12 @@ int i; } char *salloc(length) -int length; +unsigned length; { char *s,*c; extern char *malloc() ; s=c= malloc(length); - while(length-->0)*c++ =0; + while(length--)*c++ =0; return(s); }