diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-11-19 17:15:19 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-11-19 17:15:19 +0100 |
commit | 437cf27b6db107b2b74836ac2d897a10ebc67c0b (patch) | |
tree | 29b166cebc593055dea5d7be1b87fb410c40e7d7 /sal | |
parent | af66914c1151533ced12bca6e8a7ec14348bdb9e (diff) |
Blind fix for Android
Change-Id: I091fa9f9fd4c2df1818aadcba7995b174b07f098
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/nlsupport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/nlsupport.cxx b/sal/osl/unx/nlsupport.cxx index 93cc85976994..f6ae33c66b9f 100644 --- a/sal/osl/unx/nlsupport.cxx +++ b/sal/osl/unx/nlsupport.cxx @@ -901,7 +901,7 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale ) /* No locale environment variables on Android, so why even bother * with getenv(). */ - char * locale = "en-US.UTF-8"; + char const * locale = "en-US.UTF-8"; #else /* simulate behavior off setlocale */ char * locale = getenv( "LC_ALL" ); |