From cb6d67c21f11811c5bc023b9565c1c1b1f4081fa Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 15 May 2013 10:42:04 +0300 Subject: Spelling "separate" (etc) correctly is hard --- dtrans/source/test/test_dtrans.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dtrans') diff --git a/dtrans/source/test/test_dtrans.cxx b/dtrans/source/test/test_dtrans.cxx index 3c735c7deaea..b0226c83f1a4 100644 --- a/dtrans/source/test/test_dtrans.cxx +++ b/dtrans/source/test/test_dtrans.cxx @@ -39,9 +39,9 @@ //------------------------------------------------------------------------ #ifdef UNX -#define PATH_SEPERATOR '/' +#define PATH_SEPARATOR '/' #else -#define PATH_SEPERATOR '\\' +#define PATH_SEPARATOR '\\' #endif #define ENSURE( a, b ) if( !a ) { fprintf( stderr, b "\n" ); exit( -1 ); } @@ -304,7 +304,7 @@ int SAL_CALL main( int argc, const char* argv[] ) // check command line parameters //------------------------------------------------------------------ - if ( NULL == ( app = strrchr( argv[0], PATH_SEPERATOR ) ) ) + if ( NULL == ( app = strrchr( argv[0], PATH_SEPARATOR ) ) ) app = argv[0]; else app++; -- cgit