Commit b81e14d4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Cosmetic fix

parent f5f61ad5
...@@ -200,13 +200,13 @@ char *FromLocale( const char *locale ) ...@@ -200,13 +200,13 @@ char *FromLocale( const char *locale )
char *FromLocaleDup( const char *locale ) char *FromLocaleDup( const char *locale )
{ {
#if defined (ASSUME_UTF8) #if defined (ASSUME_UTF8)
return strdup( locale ); return strdup( locale );
#else #else
# ifdef USE_ICONV # ifdef USE_ICONV
if (from_locale.hd == (vlc_iconv_t)(-1)) if (from_locale.hd == (vlc_iconv_t)(-1))
return strdup( locale ); return strdup( locale );
# endif # endif
return FromLocale( locale ); return FromLocale( locale );
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment