mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:30:58 +08:00
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:
parent
6564e475c6
commit
dd6f85cd5e
@ -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
|
||||
|
@ -225,7 +225,7 @@ void t4()
|
||||
tf.remove();
|
||||
#else
|
||||
tf.close();
|
||||
unlink(tempfile);
|
||||
unlink((char*)tempfile);
|
||||
#endif
|
||||
assert(!tf.is_open());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user