Argh, I thought I had compiled this;)
Change-Id: I5619e26e5afbe8e6532204feb60b87f6a7875ee0
This commit is contained in:
parent
bf850f6799
commit
3968133721
1 changed files with 2 additions and 2 deletions
|
@ -911,7 +911,7 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale )
|
|||
/* No locale environment variables on Android, so why even bother
|
||||
* with getenv().
|
||||
*/
|
||||
locale = "en-US.UTF-8";
|
||||
char * locale = "en-US.UTF-8";
|
||||
#else
|
||||
/* simulate behavior off setlocale */
|
||||
char * locale = getenv( "LC_ALL" );
|
||||
|
@ -925,8 +925,8 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale )
|
|||
if( NULL == locale )
|
||||
locale = "C";
|
||||
|
||||
*ppLocale = _parse_locale( locale );
|
||||
#endif
|
||||
*ppLocale = _parse_locale( locale );
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue