From 0c0ee07caf8dac70395331c556e69d8327988c4f Mon Sep 17 00:00:00 2001 From: anon Date: Sat, 9 Sep 2023 18:48:41 +0200 Subject: [PATCH] syntax fix --- source/jeger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/jeger.c b/source/jeger.c index 3b56c04..c244fe2 100644 --- a/source/jeger.c +++ b/source/jeger.c @@ -454,7 +454,7 @@ void filter_blacklist(const char * whitelist, const char * blacklist, char * filtered) { for (; *blacklist != '\0'; blacklist++) { - for(; *whitelist != '\0'; whitelist++) { + for (; *whitelist != '\0'; whitelist++) { if (*blacklist == *whitelist) { goto long_continue; }