diff options
author | Steve Huston <shuston@riverace.com> | 1999-07-09 16:21:09 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-07-09 16:21:09 +0000 |
commit | 9cc0a57281989dbff2d13193d63d8d987b65ee01 (patch) | |
tree | 1046dfaf0b390e0c3b2d010934370f35515c6de6 /tests/test_config.h | |
parent | 9b1a07309620baf2cc5deb87d5a91c392a76060a (diff) | |
download | ATCD-9cc0a57281989dbff2d13193d63d8d987b65ee01.tar.gz |
Change test_dir to const because it's initialized froma string literal.
Diffstat (limited to 'tests/test_config.h')
-rw-r--r-- | tests/test_config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_config.h b/tests/test_config.h index 8e23a83f668..b01be574d86 100644 --- a/tests/test_config.h +++ b/tests/test_config.h @@ -251,7 +251,7 @@ ACE_Test_Output::set_output (const ASYS_TCHAR *filename, int append) #else ASYS_TCHAR temp[MAXPATHLEN]; // Ignore the error value since the directory may already exist. - ASYS_TCHAR *test_dir; + const ASYS_TCHAR *test_dir; #if !defined (ACE_HAS_WINCE) test_dir = ACE_OS::getenv (ACE_TEXT ("ACE_TEST_DIR")); |