(file_stream.c) Fix warnings
This commit is contained in:
parent
fe0391825b
commit
810447e3ec
|
@ -291,7 +291,8 @@ char *filestream_gets(RFILE *stream, char *s, size_t len)
|
|||
|
||||
int filestream_getc(RFILE *stream)
|
||||
{
|
||||
char c;
|
||||
char c = 0;
|
||||
(void)c;
|
||||
if (!stream)
|
||||
return 0;
|
||||
#if defined(HAVE_BUFFERED_IO)
|
||||
|
|
Loading…
Reference in New Issue