Kaydet (Commit) 376feb6a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

left shift of 1 by 31 places cannot be represented in type 'int'

Clang -fsanitize=undefined

Change-Id: I2b3f1bd28e098d5eb57892d2c7438c18c5c3b357
üst ba282259
......@@ -127,8 +127,8 @@ typedef struct wraplist
} Wraplist;
#define new(t) (t *)domalloc(sizeof(t))
#define quicklook(a,b) (namebit[(a)&077] & (1<<((b)&037)))
#define quickset(a,b) namebit[(a)&077] |= (1<<((b)&037))
#define quicklook(a,b) (namebit[(a)&077] & (1U<<((b)&037)))
#define quickset(a,b) namebit[(a)&077] |= (1U<<((b)&037))
extern unsigned long namebit[077 + 1];
enum errtype
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment