Warning fix

This commit is contained in:
twinaphex 2020-08-01 18:18:09 +02:00
parent cd9ea1f44b
commit aba17fdc92

View File

@ -439,7 +439,7 @@ char *intfstream_gets(intfstream_internal_t *intf,
#endif #endif
case INTFSTREAM_RZIP: case INTFSTREAM_RZIP:
#if defined(HAVE_ZLIB) #if defined(HAVE_ZLIB)
return rzipstream_gets(intf->rzip.fp, buffer, len); return rzipstream_gets(intf->rzip.fp, buffer, (size_t)len);
#else #else
break; break;
#endif #endif