tFile.cc (t4): Cast TMPFILE to char* in the call to unlink...

* tFile.cc (t4): Cast TMPFILE to char* in the call to unlink, to
        solve warning problems with vxworks headers that leave const off
        their declarations.
Brought over from devo.

From-SVN: r17044
This commit is contained in:
Brendan Kehoe 1997-12-11 18:44:36 +00:00 committed by Jeff Law
parent 6564e475c6
commit dd6f85cd5e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
1997-10-31 Brendan Kehoe <brendan@lisa.cygnus.com>
* tFile.cc (t4): Cast TMPFILE to char* in the call to unlink, to
solve warning problems with vxworks headers that leave const off
their declarations.
Tue May 20 17:57:31 1997 Jeffrey A Law (law@cygnus.com)
* tfformat.c (main): Only run half the testcases if SLOW_SIMULATOR

View File

@ -225,7 +225,7 @@ void t4()
tf.remove();
#else
tf.close();
unlink(tempfile);
unlink((char*)tempfile);
#endif
assert(!tf.is_open());
}