From fde596fae4f851720f63be6ed3db75fd9c17585b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 11 Dec 2017 12:25:44 +0100 Subject: [PATCH] Cleanups --- libretro-common/streams/interface_stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/streams/interface_stream.c b/libretro-common/streams/interface_stream.c index 0363231b56..06a4113526 100644 --- a/libretro-common/streams/interface_stream.c +++ b/libretro-common/streams/interface_stream.c @@ -276,7 +276,7 @@ int intfstream_getc(intfstream_internal_t *intf) #ifdef HAVE_CHD return chdstream_getc(intf->chd.fp); #else - return -1; + break; #endif } @@ -298,7 +298,7 @@ int intfstream_tell(intfstream_internal_t *intf) #ifdef HAVE_CHD return (int)chdstream_tell(intf->chd.fp); #else - return -1; + break; #endif }