# HG changeset patch # User reimar # Date 1228210704 0 # Node ID f210d48c43962ac64d55998a6c60a53164a33673 # Parent ace2f84df2bd6b0eb35d259ae0cdfe3691086d07 Cosmetics: remove spaces before argument ( diff -r ace2f84df2bd -r f210d48c4396 libvo/vo_direct3d.c --- a/libvo/vo_direct3d.c Tue Dec 02 09:36:47 2008 +0000 +++ b/libvo/vo_direct3d.c Tue Dec 02 09:38:24 2008 +0000 @@ -508,7 +508,7 @@ 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, "Not enough memory\r\n"); return -1; @@ -594,7 +594,7 @@ 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 @@ uninit_d3d(); vo_w32_uninit(); /* w32_common framework call */ - free (priv); + free(priv); priv = NULL; }