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 )
// 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;
}
......
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