mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-12-03 17:11:57 +00:00
Make that unsigned
This commit is contained in:
parent
2208136403
commit
a502a5453f
1 changed files with 1 additions and 1 deletions
2
gmqcc.h
2
gmqcc.h
|
@ -987,7 +987,7 @@ typedef struct {
|
|||
|
||||
extern opts_cmd_t opts;
|
||||
|
||||
#define OPTS_GENERIC(f,i) (!! (((f)[(i)/32]) & (1<< (unsigned)((i)%32))))
|
||||
#define OPTS_GENERIC(f,i) (!! (((f)[(i)/32]) & (1U << (unsigned)((i)%32))))
|
||||
|
||||
#define OPTS_FLAG(i) OPTS_GENERIC(opts.flags, (i))
|
||||
#define OPTS_WARN(i) OPTS_GENERIC(opts.warn, (i))
|
||||
|
|
Loading…
Reference in a new issue