From 2eb86a834977f56c82a0079b0a2c8302f5ab7501 Mon Sep 17 00:00:00 2001 From: James Drabb Jr Date: Sun, 17 Mar 2019 06:23:05 -0400 Subject: [PATCH] Update Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed warning about ISO C90 forbids variable length array ‘input’ [-Wvla]. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 870ae2e..a878615 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,7 @@ EXTRA_CFLAGS += -Wno-unused EXTRA_CFLAGS += -Wno-uninitialized EXTRA_CFLAGS += -Wno-int-to-pointer-cast +EXTRA_CFLAGS += -Wno-vla EXTRA_CFLAGS += -I$(src)/include