Commit 70dd3161 authored by Laurent Aimar's avatar Laurent Aimar

Fixed typo in input.c

parent 5a8f7c85
......@@ -1395,7 +1395,7 @@ void input_ControlPush( input_thread_t *p_input,
if( p_val )
c.val = *p_val;
else
memset( &c, 0, sizeof(c) );
memset( &c.val, 0, sizeof(c.val) );
p_input->p->control[p_input->p->i_control++] = c;
}
......
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