From: Daniel Carl <danielcarl@gmx.de>
Date: Thu, 17 Apr 2014 08:42:23 +0000 (+0200)
Subject: Remove -Wmissing-parameter-type compiler option.
X-Git-Url: https://git.owens.tech/112-editable-focus.html/112-editable-focus.html/git?a=commitdiff_plain;h=f4c6c73d25d8443040501a5957a5c892453b482b;p=vimb.git

Remove -Wmissing-parameter-type compiler option.

This seems to be no more required and produced warnings in clang compiler.
---

diff --git a/config.mk b/config.mk
index a541203..ab0c8da 100644
--- a/config.mk
+++ b/config.mk
@@ -41,7 +41,7 @@ LIBFLAGS = $(shell pkg-config --libs $(LIBS))
 # normal compiler flags
 CFLAGS  += $(shell pkg-config --cflags $(LIBS))
 CFLAGS  += -Wall -pipe -ansi -std=c99 -pedantic
-CFLAGS  += -Wmissing-declarations -Wmissing-parameter-type -Wno-overlength-strings
+CFLAGS  += -Wmissing-declarations -Wno-overlength-strings
 CFLAGS  += ${CPPFLAGS}
 LDFLAGS += ${LIBFLAGS}