Commit dae295b4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

xcb/screen: remove superfluous cast

parent e6f024b4
......@@ -282,7 +282,7 @@ static int Control (demux_t *demux, int query, va_list args)
case DEMUX_CAN_CONTROL_RATE:
case DEMUX_CAN_SEEK:
{
bool *v = (bool*)va_arg( args, bool * );
bool *v = va_arg (args, bool *);
*v = false;
return VLC_SUCCESS;
}
......
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