1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-07 10:02:50 +00:00

Cosmetics: remove spaces before argument (

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28061 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-12-02 09:38:24 +00:00
parent bbc8a57160
commit e84d33f00f

View File

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