Comment out unused strcmp block. It used todo a printf, which was commented

out, so really no reason to run the strcmp in the first place if we do
nothing with the result.


SVN revision: 28228
This commit is contained in:
Christopher Michael 2007-02-03 20:44:35 +00:00
parent c8704062d8
commit 671489c8a2
1 changed files with 3 additions and 1 deletions

View File

@ -46,10 +46,12 @@ ecore_init(void)
if (++_ecore_init_count == 1)
{
setlocale(LC_CTYPE, "");
/*
if (strcmp(nl_langinfo(CODESET), "UTF-8"))
{
// printf("WARNING: not a utf8 locale!\n");
printf("WARNING: not a utf8 locale!\n");
}
*/
#ifndef WIN32
if (getenv("ECORE_FPS_DEBUG")) _ecore_fps_debug = 1;
if (_ecore_fps_debug) _ecore_fps_debug_init();