diff options
author | Ori Bernstein <ori@eigenstate.org> | 2016-01-22 21:10:42 +1300 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2016-05-08 17:20:43 +1200 |
commit | fb907237536db80a21dcb82d3eb11b880db4cfcb (patch) | |
tree | 5ce9e36c2d2f9f0ae67bbe61dbfc37ca2a9c4842 /mk/c.mk | |
parent | 95b8caa2f3679d450a19e9b62d8eacb70e51b073 (diff) | |
download | mc-fb907237536db80a21dcb82d3eb11b880db4cfcb.tar.gz |
Use uvlong.
Format specifiers for precisely sized types are ugly.
Diffstat (limited to 'mk/c.mk')
-rw-r--r-- | mk/c.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ _LIBINCPATHS=$(addprefix -I, $(dir $(DEPS))) $(_PCHDRS) _LIBPATHS=$(addprefix -l, $(patsubst lib%.a,%,$(notdir $(DEPS)))) $(_PCLIBS) # yeah, I should probably remove -Werror, but it's nice for developing alone. -CFLAGS += -Wall -Wextra -Werror -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare -Wno-array-bounds -g -O0 +CFLAGS += -Wall -Wextra -Werror -Wno-unused-parameter -Wno-missing-field-initializers -Wno-sign-compare -g -O0 CFLAGS += -MMD -MP -MF .deps/$(subst /,-,$*).d LIB ?= $(INSTLIB) |