From: ceriel Date: Wed, 25 Mar 1987 15:57:22 +0000 (+0000) Subject: BMASK was unsigned, which caused problems with some C compilers (ours) X-Git-Tag: release-5-5~4345 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=eeb5148f29b2e6d4ed08a7c2e19192102df91809;p=ack.git BMASK was unsigned, which caused problems with some C compilers (ours) --- diff --git a/util/opt/param.h b/util/opt/param.h index ff9877426..bce3e3a8a 100644 --- a/util/opt/param.h +++ b/util/opt/param.h @@ -16,4 +16,4 @@ #define ps_sym (sp_lpseu+1) #define ps_last ps_sym -#define BMASK 0377 +#define BMASK 255 /* 0377 is unsigned, which may cause problems */