mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(file_stream.c) Fix warnings
This commit is contained in:
parent
fe0391825b
commit
810447e3ec
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue