diff options
author | Paul Selkirk <paul@psgd.org> | 2018-02-15 16:37:24 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2018-02-15 16:37:24 -0500 |
commit | 14e17e6efd19622fbec6be8270be2c30a6b07920 (patch) | |
tree | a1ad885f807d740d79162b33fca984235675a965 /libraries | |
parent | b35b87ea14016760786319a23b87792f1e1041de (diff) |
Cleanup: warn of signed/unsigned mismatches in libhal.
This is from October's cleanup binge, but I forgot to commit it at the time.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libhal/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/libhal/Makefile b/libraries/libhal/Makefile index 72225e1..d71956f 100644 --- a/libraries/libhal/Makefile +++ b/libraries/libhal/Makefile @@ -1,6 +1,6 @@ vpath %.c ${LIBHAL_SRC} vpath %.h ${LIBHAL_SRC} -CFLAGS += -Wno-missing-field-initializers -Wno-unused-parameter -Wno-sign-compare +CFLAGS += -Wno-missing-field-initializers -Wno-unused-parameter include ${LIBHAL_SRC}/Makefile |