Buildfix
This commit is contained in:
parent
47b4de7bbf
commit
42ac90665e
|
@ -554,7 +554,12 @@ int filestream_printf(RFILE *stream, const char* format, ...)
|
|||
|
||||
int filestream_error(RFILE *stream)
|
||||
{
|
||||
#if defined(HAVE_BUFFERED_IO)
|
||||
return ferror(stream->fp);
|
||||
#else
|
||||
/* stub */
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
int filestream_close(RFILE *stream)
|
||||
|
|
Loading…
Reference in New Issue