diff options
author | 2005-11-28 17:50:12 +0000 | |
---|---|---|
committer | 2005-11-28 17:50:12 +0000 | |
commit | 0f9fea6723af77eca5fc27abed85e3a63e36c6d9 (patch) | |
tree | 504af47c5029be9a13e59463cf478f4a51c51a9f | |
parent | another dangling semicolon from Matthias Bauer (diff) | |
download | wireguard-openbsd-0f9fea6723af77eca5fc27abed85e3a63e36c6d9.tar.xz wireguard-openbsd-0f9fea6723af77eca5fc27abed85e3a63e36c6d9.zip |
unused arg in internal static API
-rw-r--r-- | lib/libc/gen/glob.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/gen/glob.c b/lib/libc/gen/glob.c index e554b7cba98..67b534f3b2c 100644 --- a/lib/libc/gen/glob.c +++ b/lib/libc/gen/glob.c @@ -1,4 +1,4 @@ -/* $OpenBSD: glob.c,v 1.25 2005/08/08 08:05:34 espie Exp $ */ +/* $OpenBSD: glob.c,v 1.26 2005/11/28 17:50:12 deraadt Exp $ */ /* * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -129,7 +129,7 @@ static int glob0(const Char *, glob_t *); static int glob1(Char *, Char *, glob_t *, size_t *); static int glob2(Char *, Char *, Char *, Char *, Char *, Char *, glob_t *, size_t *); -static int glob3(Char *, Char *, Char *, Char *, Char *, Char *, +static int glob3(Char *, Char *, Char *, Char *, Char *, Char *, Char *, glob_t *, size_t *); static int globextend(const Char *, glob_t *, size_t *); static const Char * @@ -548,16 +548,16 @@ glob2(Char *pathbuf, Char *pathbuf_last, Char *pathend, Char *pathend_last, } else /* Need expansion, recurse. */ return(glob3(pathbuf, pathbuf_last, pathend, - pathend_last, pattern, pattern_last, - p, pattern_last, pglob, limitp)); + pathend_last, pattern, p, pattern_last, + pglob, limitp)); } /* NOTREACHED */ } static int glob3(Char *pathbuf, Char *pathbuf_last, Char *pathend, Char *pathend_last, - Char *pattern, Char *pattern_last, Char *restpattern, - Char *restpattern_last, glob_t *pglob, size_t *limitp) + Char *pattern, Char *restpattern, Char *restpattern_last, glob_t *pglob, + size_t *limitp) { struct dirent *dp; DIR *dirp; |