From 2c7352ed573a8858c1a9dae3e9e52a83b640963d Mon Sep 17 00:00:00 2001 From: realaltffour <56314286+realaltffour@users.noreply.github.com> Date: Tue, 28 Apr 2020 14:36:08 +0300 Subject: [PATCH] Remove extra null-termination --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 00b5d93..bf9e88f 100644 --- a/src/main.c +++ b/src/main.c @@ -12,7 +12,7 @@ #define EVENT_BUF_LEN (1024 * (EVENT_SIZE + 16)) static const int IGNORE_LIST_SIZE = 1; -static const char *extension_ignore_list[] = { "crdownload\0" }; +static const char *extension_ignore_list[] = { "crdownload" }; static const char prefix_dir[] = "orgdl";