Commit 5300af61 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix compilation on win32.

parent ad08a9c3
......@@ -55,7 +55,7 @@ int screen_InitCapture( demux_t *p_demux )
screen_data_t *p_data;
int i_chroma, i_bits_per_pixel;
p_sys->p_data = p_data = calloc( sizeof( 1, screen_data_t ) );
p_sys->p_data = p_data = calloc( 1, sizeof( screen_data_t ) );
if( !p_data )
return VLC_ENOMEM;
......
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