Fixed two trivial const correctness issues.

SVN revision: 38621
This commit is contained in:
tilman 2009-01-17 17:13:03 +00:00 committed by tilman
parent f26751a57c
commit 4c70375594
2 changed files with 2 additions and 2 deletions

View File

@ -399,7 +399,7 @@ static Eina_Error_Level _error_level = EINA_ERROR_LEVEL_DBG;
static Eina_Error_Level _error_level = EINA_ERROR_LEVEL_ERR;
#endif
static char *_colors[EINA_ERROR_LEVELS] = {
static const char *_colors[EINA_ERROR_LEVELS] = {
RED, // EINA_ERROR_LEVEL_ERR
YELLOW, // EINA_ERROR_LEVEL_WARN
NOTHING, // EINA_ERROR_LEVEL_INFO

View File

@ -417,7 +417,7 @@ eina_list_sort_merge(Eina_List *a, Eina_List *b, Eina_Compare_Cb func)
EAPI int
eina_list_init(void)
{
char *choice;
const char *choice;
if (!_eina_list_init_count)
{