From: Dmitrij D. Czarkoff <czarkoff@gmail.com>
Date: Thu, 25 Jun 2015 20:06:48 +0000 (+0200)
Subject: Replaced "-Wpedantic" with "-pedantic"
X-Git-Url: https://git.owens.tech/assets/wrapped.html/assets/wrapped.html/git?a=commitdiff_plain;h=eb78d13a28c9b511e5d3bb1183e2f2f8447e872a;p=vimb.git

Replaced "-Wpedantic" with "-pedantic"

for compatibility with older GCC versions.
---

diff --git a/tests/Makefile b/tests/Makefile
index 8653ecd..766f66e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -3,7 +3,7 @@ SRCDIR=$(BASEDIR)/src
 include $(BASEDIR)/config.mk
 
 CPPFLAGS += -I $(BASEDIR)/
-CFLAGS   += -fPIC -Wpedantic
+CFLAGS   += -fPIC -pedantic
 
 TEST_PROGS = test-handlers \
 			 test-map      \