Skip to content

Commit 194d3ef

Browse files
committed
Move arg types into function declaration
The args to rangematch didn't have any types specified. This patch adds a type to the args.
1 parent 5fb2f80 commit 194d3ef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

storage/cfstore/source/cfstore_fnmatch.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,11 +263,7 @@ fnmatch(pattern, string, flags)
263263
}
264264

265265
static int
266-
rangematch(pattern, test, flags, newp)
267-
const char *pattern;
268-
char test;
269-
int flags;
270-
char **newp;
266+
rangematch(const char *pattern, char test, int flags, char **newp)
271267
{
272268
int negate, ok;
273269
char c, c2;

0 commit comments

Comments
 (0)