From 94dc637d03fb62eeffd1b4c4d6fda5b596d200af Mon Sep 17 00:00:00 2001 From: mvandervoord Date: Wed, 30 Oct 2019 08:48:08 -0400 Subject: [PATCH] While we're fixing warnings / errors, disable this (otherwise helpful) error because we are purposefully making this example file fail for this. --- examples/example_1/makefile | 1 + examples/example_2/makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/example_1/makefile b/examples/example_1/makefile index 545476a..46799cf 100644 --- a/examples/example_1/makefile +++ b/examples/example_1/makefile @@ -41,6 +41,7 @@ CFLAGS += -Wno-unknown-pragmas CFLAGS += -Wstrict-prototypes CFLAGS += -Wundef CFLAGS += -Wold-style-definition +CFLAGS += -Wno-misleading-indentation TARGET_BASE1=test1 TARGET_BASE2=test2 diff --git a/examples/example_2/makefile b/examples/example_2/makefile index 99d8d96..49cfc24 100644 --- a/examples/example_2/makefile +++ b/examples/example_2/makefile @@ -41,6 +41,7 @@ CFLAGS += -Wno-unknown-pragmas CFLAGS += -Wstrict-prototypes CFLAGS += -Wundef CFLAGS += -Wold-style-definition +CFLAGS += -Wno-misleading-indentation TARGET_BASE1=all_tests TARGET1 = $(TARGET_BASE1)$(TARGET_EXTENSION) -- GitLab