This commit is contained in:
twinaphex 2017-12-11 12:25:44 +01:00
parent 8aa4d6d148
commit fde596fae4

View File

@ -276,7 +276,7 @@ int intfstream_getc(intfstream_internal_t *intf)
#ifdef HAVE_CHD #ifdef HAVE_CHD
return chdstream_getc(intf->chd.fp); return chdstream_getc(intf->chd.fp);
#else #else
return -1; break;
#endif #endif
} }
@ -298,7 +298,7 @@ int intfstream_tell(intfstream_internal_t *intf)
#ifdef HAVE_CHD #ifdef HAVE_CHD
return (int)chdstream_tell(intf->chd.fp); return (int)chdstream_tell(intf->chd.fp);
#else #else
return -1; break;
#endif #endif
} }