e_utils: Increase tmpbuf allocated size

Increase size of allocated tmpbuf in order to eliminate compiler
warnings in regard to truncated strings
This commit is contained in:
Christopher Michael 2020-09-17 12:15:38 -04:00
parent 43035f34f7
commit 9adfc913e4
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#define e_util_dialog_show(title, args...) \
do { \
char __tmpbuf[4096]; \
char __tmpbuf[PATH_MAX + 256]; \
\
snprintf(__tmpbuf, sizeof(__tmpbuf), ##args); \
e_util_dialog_internal(title, __tmpbuf); \