2006-02-08 Joel Sherrill <joel@OARcorp.com>

* cdtest/main.cc: Fix warnings.
This commit is contained in:
Joel Sherrill
2006-02-08 22:27:59 +00:00
parent 6dbe4d68a7
commit 8b474b1352
2 changed files with 6 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ class RtemsException
{
public:
RtemsException( char *module, int ln, int err = 0 )
RtemsException( const char *module, int ln, int err = 0 )
: error( err ), line( ln ), file( module )
{
printf( "RtemsException raised=File:%s, Line:%d, Error=%X\n",
@@ -130,7 +130,7 @@ public:
private:
int error;
int line;
char *file;
const char *file;
};