Skip to content
Snippets Groups Projects
Commit ae4fd3a1 authored by Jakob Olsson's avatar Jakob Olsson
Browse files

map2: add curved brackets around ternary operator in isset macro

parent ef9132ab
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@
#define cmdu_mask_isset(m, f) \
({ \
(!!(m[f >= 0x8000 ? 4 : 0 + (f >= 0x8000 ? f - 0x8000 : f) / 8] & \
(!!(m[(f >= 0x8000 ? 4 : 0) + (f >= 0x8000 ? f - 0x8000 : f) / 8] & \
(1 << ((f >= 0x8000 ? f - 0x8000 : f) % 8)))); \
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment