Kaydet (Commit) 2809dcb7 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS adc5 (1.5.2); FILE MERGED

2003/04/15 16:01:18 np 1.5.2.2: #108787#
2003/04/09 15:23:45 np 1.5.2.1: 108787
üst d7b12561
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: filecoll.cxx,v $ * $RCSfile: filecoll.cxx,v $
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* *
* last change: $Author: hr $ $Date: 2003-03-18 14:11:43 $ * last change: $Author: hr $ $Date: 2003-04-15 18:47:03 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -91,8 +91,9 @@ FileCollector::AddFilesFrom( const char * i_sRootDir, ...@@ -91,8 +91,9 @@ FileCollector::AddFilesFrom( const char * i_sRootDir,
csv::ploc::Directory aDir(i_sRootDir); csv::ploc::Directory aDir(i_sRootDir);
if (NOT aDir.Exists()) if (NOT aDir.Exists())
{ {
Cerr() << "Warning: The path for the files to be parsed could not be found." Cerr() << "Warning: The path for the files to be parsed could not be found:\n"
<< Endl(); << i_sRootDir
<< Endl();
return 0; return 0;
} }
...@@ -127,8 +128,9 @@ FileCollector::AddFile( const char * i_sFilePath ) ...@@ -127,8 +128,9 @@ FileCollector::AddFile( const char * i_sFilePath )
FILE * pFile = fopen( i_sFilePath, "r" ); FILE * pFile = fopen( i_sFilePath, "r" );
if ( pFile == 0 ) if ( pFile == 0 )
{ {
Cerr() << "Error: The path for the file to be parsed could not be found." Cerr() << "Warning: The path for the file to be parsed could not be found:\n"
<< Endl(); << i_sFilePath
<< Endl();
return 0; return 0;
} }
......
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