From 159435291bb6e36f1525c4718dc2f8bec86c0545 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Fri, 1 Jun 2012 15:46:46 -0500 Subject: targeted string re-work Change-Id: I2c166c63e9d2ab7d60bb404f643045678ef239a2 --- sal/qa/osl/file/osl_File.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sal/qa/osl') diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index 100f7eca2af8..8e5fd668551f 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -6006,7 +6006,7 @@ namespace osl_Directory # define PATH_BUFFER_SIZE PATH_MAX #endif - char TEST_PATH_POSTFIX[] = "hello/world"; +#define TEST_PATH_POSTFIX "hello/world" //######################################## OUString get_test_path() @@ -6113,8 +6113,8 @@ namespace osl_Directory //########################################## void with_relative_path() { - FileBase::RC rc = Directory::createPath( - OUString(TEST_PATH_POSTFIX)); + FileBase::RC rc = Directory::createPath( OUString(TEST_PATH_POSTFIX)); + CPPUNIT_ASSERT_MESSAGE ( -- cgit