xsettings - fix warning for buffer that could be a bit small

warnings of buffer being a little small in theory. fix.
This commit is contained in:
Carsten Haitzler 2017-08-21 12:16:27 +09:00 committed by Mike Blumenkrantz
parent 3aa8f2f1f7
commit 6c7cd33cf3
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ _e_xsettings_font_set(void)
Eina_Strbuf *buf;
Eina_List *l;
int size = efd->size;
char size_buf[8];
char size_buf[12];
const char *p;
/* TODO better way to convert evas font sizes? */