Kaydet (Commit) 76cdf2ff authored tarafından Tor Lillqvist's avatar Tor Lillqvist

ISO C++11 does not allow conversion from string literal to 'char *'

Change-Id: I098d0b8b3428cbf57a69c331515093df36e0c172
üst 185dae19
......@@ -873,7 +873,7 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale )
locale = getenv( "LANG" );
if( NULL == locale )
locale = "C";
locale = strdup("C");
}
/* return the locale */
......
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