BMASK was unsigned, which caused problems with some C compilers (ours)
This commit is contained in:
parent
7f60f6f8c1
commit
eeb5148f29
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue