Commit 6a0baf64 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

XSPF: kill a warning

parent 28cd9ea3
......@@ -436,7 +436,7 @@ static bool parse_track_node COMPLEX_INTERFACE
free(psz_uri);
if (p_sys->i_track_id < 0
|| p_sys->i_track_id >= (SIZE_MAX / sizeof(p_new_input)))
|| (unsigned)p_sys->i_track_id >= (SIZE_MAX / sizeof(p_new_input)))
{
input_item_node_AppendNode(p_input_node, p_new_node);
vlc_gc_decref(p_new_input);
......
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