From bb910c050b3f3379b5b600c6259508fdba93352a Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 14 Jan 2020 16:09:45 -0500 Subject: st is being used, so it doesn't need a (void)cast to suppress warnings --- sources.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources.c b/sources.c index 6561640..171de68 100644 --- a/sources.c +++ b/sources.c @@ -10,7 +10,7 @@ static struct majefile *tail = NULL; static int addfile(const char *path, const struct stat *st, int flags, struct FTW *ft) { - (void)st; (void)flags; (void)ft; + (void)flags; (void)ft; if (path[0] == '.' && path[1] == '/') { path += 2; -- cgit v1.2.1