summaryrefslogtreecommitdiff
path: root/dtrans/source/test/test_dtrans.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dtrans/source/test/test_dtrans.cxx')
-rw-r--r--dtrans/source/test/test_dtrans.cxx6
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++;