BMASK was unsigned, which caused problems with some C compilers (ours)
authorceriel <none@none>
Wed, 25 Mar 1987 15:57:22 +0000 (15:57 +0000)
committerceriel <none@none>
Wed, 25 Mar 1987 15:57:22 +0000 (15:57 +0000)
util/opt/param.h

index ff98774..bce3e3a 100644 (file)
@@ -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 */