summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2011-09-30 15:31:20 +0200
committerAndras Timar <atimar@suse.com>2011-09-30 23:49:37 +0200
commit7969f909e2dd524d420aa874c7322f6feb3765e4 (patch)
treec8a991f923416cc991e8108dd9345e7e434d2fd5 /l10ntools
parent0bb5161900b743b95bc1431674b722d1e8d8ca1a (diff)
fix error messages
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/directory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/directory.cxx b/l10ntools/source/directory.cxx
index 85663a32b480..5830d7364ac6 100644
--- a/l10ntools/source/directory.cxx
+++ b/l10ntools/source/directory.cxx
@@ -192,7 +192,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath )
// stat
if( stat( sFullpathext.getStr(), &statbuf ) < 0 )
{
- printf("warning: Can not stat %s" , sFullpathext.getStr() );
+ printf("warning: Cannot stat %s \n" , sFullpathext.getStr() );
return;
}
@@ -201,7 +201,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath )
if( (dir = opendir( sFullpathext.getStr() ) ) == NULL )
{
- printf("readerror 2 in %s \n",sFullpathext.getStr());
+ printf("read error 2 in %s \n",sFullpathext.getStr());
return;
}