[MPlayer-cvslog] r28061 - trunk/libvo/vo_direct3d.c

reimar subversion at mplayerhq.hu
Tue Dec 2 10:38:25 CET 2008


Author: reimar
Date: Tue Dec  2 10:38:24 2008
New Revision: 28061

Log:
Cosmetics: remove spaces before argument (


Modified:
   trunk/libvo/vo_direct3d.c

Modified: trunk/libvo/vo_direct3d.c
==============================================================================
--- trunk/libvo/vo_direct3d.c	(original)
+++ trunk/libvo/vo_direct3d.c	Tue Dec  2 10:38:24 2008
@@ -508,7 +508,7 @@ static int preinit(const char *arg)
     D3DDISPLAYMODE disp_mode;
 
     /* Set to zero all global variables. */
-    priv = calloc(1, sizeof (struct global_priv));
+    priv = calloc(1, sizeof(struct global_priv));
     if (!priv) {
         mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Not enough memory\r\n");
         return -1;
@@ -594,7 +594,7 @@ static int control(uint32_t request, voi
         w32_update_xinerama_info();
         return VO_TRUE;
     case VOCTRL_SET_PANSCAN:
-        calc_fs_rect ();
+        calc_fs_rect();
         return VO_TRUE;
     case VOCTRL_GET_PANSCAN:
         return VO_TRUE;
@@ -689,7 +689,7 @@ static void uninit(void)
 
     uninit_d3d();
     vo_w32_uninit(); /* w32_common framework call */
-    free (priv);
+    free(priv);
     priv = NULL;
 }
 



More information about the MPlayer-cvslog mailing list