summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2017-12-18 03:44:33 +0100
committerRobert Swiecki <robert@swiecki.net>2017-12-18 03:44:33 +0100
commitb0cb93b9f70cc347ac3514ea56ad841e690adf3c (patch)
treeb58314ebb4b9891ce8e8fe757cf1e75f318bcea2 /Makefile
parenteba27171213942cb463e68f04ad2f2b70012d106 (diff)
downloadhonggfuzz-b0cb93b9f70cc347ac3514ea56ad841e690adf3c.tar.gz
libhfuzz: use uintptr_t instead of void* for address passing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f318ae44..ec0665d4 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ LD = $(CC)
BIN := honggfuzz
HFUZZ_CC_BINS := hfuzz_cc/hfuzz-clang hfuzz_cc/hfuzz-clang++ hfuzz_cc/hfuzz-gcc hfuzz_cc/hfuzz-g++
HFUZZ_CC_SRCS := hfuzz_cc/hfuzz-cc.c
-COMMON_CFLAGS := -D_GNU_SOURCE -Wall -Werror -Wframe-larger-than=131072 -Wno-format-truncation -Wno-unknown-warning -I.
+COMMON_CFLAGS := -D_GNU_SOURCE -Wall -Werror -Wframe-larger-than=131072 -Wno-format-truncation -I.
COMMON_LDFLAGS := -lm libcommon/libcommon.a
COMMON_SRCS := $(sort $(wildcard *.c))
CFLAGS ?= -O3