From eeb5148f29b2e6d4ed08a7c2e19192102df91809 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 25 Mar 1987 15:57:22 +0000 Subject: [PATCH] BMASK was unsigned, which caused problems with some C compilers (ours) --- util/opt/param.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.34.1