diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2024-01-24 09:33:53 +0100 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2024-01-24 09:33:53 +0100 |
commit | 1547077f958bec62f64674ac7c83e8f7f89b0cc9 (patch) | |
tree | 562f2b78abaa6ba21b657d5943009da934bade48 /make.c | |
parent | e725f502531e37a477f847dea9c36291e98378ea (diff) |
Codestyle changes
Diffstat (limited to 'make.c')
-rw-r--r-- | make.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,7 +19,8 @@ #define CC "cc" #define CFLAGS \ - "-Wall", "-Wextra", "-Wpedantic", "-Werror", "-Wno-pointer-sign", "-pipe" + "-Wall", "-Wextra", "-Wpedantic", "-Werror", "-Wno-parentheses", \ + "-Wno-pointer-sign", "-pipe" #define CFLAGS_DEBUG "-DGRAB_DEBUG", "-g", "-ggdb3" #ifdef __APPLE__ # define CFLAGS_RELEASE "-O3" |