]> git.sesse.net Git - vlc/commitdiff
Fix compilation on win32.
authorRémi Duraffort <ivoire@videolan.org>
Sat, 13 Dec 2008 15:29:18 +0000 (16:29 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Sat, 13 Dec 2008 15:29:18 +0000 (16:29 +0100)
modules/access/screen/win32.c

index 0d6c61bbc440ce2128d59ccfa134b3f8007ef07c..3812393598f0f0e53ea4c3177a530e62f8c4f489 100644 (file)
@@ -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;