Commit 6ba1d450 authored by Rafaël Carré's avatar Rafaël Carré

DecodeSubtitle: mark func parameters as unused

parent db4c7160
...@@ -165,6 +165,8 @@ subpicture_t *DecodeSubtitle(decoder_t *dec, block_t **block_ptr) ...@@ -165,6 +165,8 @@ subpicture_t *DecodeSubtitle(decoder_t *dec, block_t **block_ptr)
block_Release(block); block_Release(block);
return spu; return spu;
#else #else
VLC_UNUSED(dec);
VLC_UNUSED(block_ptr);
return NULL; return NULL;
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment