Skip to content

Commit

Permalink
Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Dec 11, 2017
1 parent a1ce8b5 commit 784bb32
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libretro-common/streams/file_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static void filestream_set_size(RFILE *stream)
* filestream_open:
* @path : path to file
* @mode : file mode to use when opening (read/write)
* @bufsize : optional buffer size (-1 or 0 to use default)
* @hints :
*
* Opens a file for reading or writing, depending on the requested mode.
* Returns a pointer to an RFILE if opened successfully, otherwise NULL.
Expand Down Expand Up @@ -289,8 +289,6 @@ char *filestream_gets(RFILE *stream, char *s, size_t len)

int filestream_getc(RFILE *stream)
{
char c = 0;
(void)c;
if (!stream)
return 0;
return fgetc(stream->fp);
Expand Down

0 comments on commit 784bb32

Please sign in to comment.