From: ceriel Date: Mon, 18 Mar 1991 14:19:27 +0000 (+0000) Subject: newlbss takes size as unsigned X-Git-Tag: release-5-5~1177 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=95967a04e48b9033938ce300cddbb2fd4d5ba772;p=ack.git newlbss takes size as unsigned --- diff --git a/mach/i86/ncg/mach.h b/mach/i86/ncg/mach.h index 311f0917a..fe958271f 100644 --- a/mach/i86/ncg/mach.h +++ b/mach/i86/ncg/mach.h @@ -12,7 +12,7 @@ #define newilb(x) fprintf(codefile,"%s:\n",x) #define newdlb(x) fprintf(codefile,"%s:\n",x) #define dlbdlb(x,y) fprintf(codefile,"%s = %s\n",x,y) -#define newlbss(l,x) fprintf(codefile,".comm %s,%d\n",l,x); +#define newlbss(l,x) fprintf(codefile,".comm %s,%u\n",l,x); #define cst_fmt "%d" #define off_fmt "%d"