Fix segment error with downloads_dir array

This commit is contained in:
realaltffour 2020-04-20 19:35:35 +03:00
parent 86befb46e8
commit 906bede7aa
No known key found for this signature in database
GPG Key ID: 7115CD2AC9A76A56
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
#define WATCHLIST_SIZE 4096
static const char downloads_dir_default[] = "Downloads";
static char downloads_dir[2048];
static char downloads_dir[4096];
static int inotify_instance = -1;
static char event_buffer[EVENT_BUF_LEN];