From 194d3ef2cb7ed8f4cd2dc5bfc62247d3fc8aec8b Mon Sep 17 00:00:00 2001 From: Russ Butler Date: Thu, 9 Jun 2016 14:49:11 +0100 Subject: [PATCH] Move arg types into function declaration The args to rangematch didn't have any types specified. This patch adds a type to the args. --- storage/cfstore/source/cfstore_fnmatch.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/storage/cfstore/source/cfstore_fnmatch.c b/storage/cfstore/source/cfstore_fnmatch.c index 34a002cf4a..77edf721a5 100644 --- a/storage/cfstore/source/cfstore_fnmatch.c +++ b/storage/cfstore/source/cfstore_fnmatch.c @@ -263,11 +263,7 @@ fnmatch(pattern, string, flags) } static int -rangematch(pattern, test, flags, newp) - const char *pattern; - char test; - int flags; - char **newp; +rangematch(const char *pattern, char test, int flags, char **newp) { int negate, ok; char c, c2;