Skip to content
Snippets Groups Projects
Commit 61d8ab8f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

inflate: fix typing mistake


Pointed-out-by: default avatarIlkka Ollakka <ileoo@videolan.org>
parent 215d3c7f
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ static int Open(vlc_object_t *obj)
if ((peek[0] & 0xF) == 8 && (peek[0] >> 4) < 8 && (U16_AT(peek) % 31) == 0)
bits = 15; /* zlib */
else
if (!memcmp(peek, "\x1F\x08B", 2))
if (!memcmp(peek, "\x1F\x8B", 2))
bits = 15 + 32; /* gzip */
else
return VLC_EGENERIC;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment