ICU-1075 fixed syntax errors on Unix

X-SVN-Rev: 5402
This commit is contained in:
Ram Viswanadha 2001-07-31 18:52:47 +00:00
parent 12a80993e6
commit 458f5dabb3
2 changed files with 4 additions and 4 deletions

View file

@ -229,9 +229,9 @@ void ctest_setICU_DATA() {
*/
#if defined (U_SRCDATADIR)
{
static const char env_string = "ICU_DATA=" U_SRCDATADIR;
static const char* env_string = "ICU_DATA=" U_SRCDATADIR;
putenv(env_string);
return
return;
}
#endif

View file

@ -527,9 +527,9 @@ void IntlTest::setICU_DATA() {
*/
#if defined (U_SRCDATADIR)
{
static const char env_string = "ICU_DATA=" U_SRCDATADIR;
static const char* env_string = "ICU_DATA=" U_SRCDATADIR;
putenv(env_string);
return
return;
}
#endif