eina - fix warnigns of possibly too msall buffers for large numbers

strings would get  truncated thanks to snprintf but make buffers
bigger to avoid warning noise
This commit is contained in:
Carsten Haitzler 2018-11-06 16:00:26 +00:00
parent e7771438a2
commit 2017c169e7
1 changed files with 3 additions and 3 deletions

View File

@ -305,7 +305,7 @@ eina_log_pid_get(void)
static inline void static inline void
eina_log_print_level_name_get(int level, const char **p_name) eina_log_print_level_name_get(int level, const char **p_name)
{ {
static char buf[4]; static char buf[12];
/* NOTE: if you change this, also change /* NOTE: if you change this, also change
* eina_log_print_level_name_color_get() * eina_log_print_level_name_color_get()
* eina_log_level_name_get() (at eina_inline_log.x) * eina_log_level_name_get() (at eina_inline_log.x)
@ -330,7 +330,7 @@ eina_log_print_level_name_color_get_win32_console(int level,
const char **p_name, const char **p_name,
int *p_color) int *p_color)
{ {
static char buf[4]; static char buf[12];
/* NOTE: if you change this, also change: /* NOTE: if you change this, also change:
* eina_log_print_level_name_get() * eina_log_print_level_name_get()
*/ */
@ -355,7 +355,7 @@ eina_log_print_level_name_color_get_posix(int level,
const char **p_name, const char **p_name,
const char **p_color) const char **p_color)
{ {
static char buf[4]; static char buf[12];
/* NOTE: if you change this, also change: /* NOTE: if you change this, also change:
* eina_log_print_level_name_get() * eina_log_print_level_name_get()
*/ */