diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-15 10:42:04 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-15 11:14:28 +0300 |
commit | cb6d67c21f11811c5bc023b9565c1c1b1f4081fa (patch) | |
tree | ff8a4b192a2ca846d32111732563432244135910 /dtrans | |
parent | 1a357b7394ac7b48b72821bff1aae4706265d7a4 (diff) |
Spelling "separate" (etc) correctly is hard
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/test/test_dtrans.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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++; |