Kaydet (Commit) 7969f909 authored tarafından Andras Timar's avatar Andras Timar

fix error messages

üst 0bb51619
...@@ -192,7 +192,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath ) ...@@ -192,7 +192,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath )
// stat // stat
if( stat( sFullpathext.getStr(), &statbuf ) < 0 ) if( stat( sFullpathext.getStr(), &statbuf ) < 0 )
{ {
printf("warning: Can not stat %s" , sFullpathext.getStr() ); printf("warning: Cannot stat %s \n" , sFullpathext.getStr() );
return; return;
} }
...@@ -201,7 +201,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath ) ...@@ -201,7 +201,7 @@ void Directory::readDirectory( const rtl::OUString& sFullpath )
if( (dir = opendir( sFullpathext.getStr() ) ) == NULL ) if( (dir = opendir( sFullpathext.getStr() ) ) == NULL )
{ {
printf("readerror 2 in %s \n",sFullpathext.getStr()); printf("read error 2 in %s \n",sFullpathext.getStr());
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment