(file_stream.c) Fix warnings

This commit is contained in:
Twinaphex 2016-06-04 07:37:54 +02:00
parent fe0391825b
commit 810447e3ec

View File

@ -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)