-pedantic -> -Wpedantic

Bug: https://codeberg.org/dwl/dwl/issues/584
This commit is contained in:
Leonardo Hernández Hernández
2024-08-01 20:38:57 -06:00
parent 672b4c405d
commit d136dadf45
2 changed files with 5 additions and 2 deletions

View File

@@ -14,4 +14,7 @@ XLIBS =
#XWAYLAND = -DXWAYLAND
#XLIBS = xcb xcb-icccm
CC = gcc
# dwl itself only uses C99 features, but wlroots' headers use anonymous unions (C11).
# To avoid warnings about them, we do not use -std=c99 and instead of using the
# gmake default 'CC=c99', we use cc.
CC = cc