diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-10-08 11:25:01 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-10-08 11:25:01 +0000 |
commit | 50f563f9279f01a9f2177cac84178b153365f037 (patch) | |
tree | 5b594cc603e9e9aa42ef9545672578c174d00f27 /libvo | |
parent | 77bc2b34b7c8c36d21bee5a48cd73a0e110122f8 (diff) | |
download | mpv-50f563f9279f01a9f2177cac84178b153365f037.tar.bz2 mpv-50f563f9279f01a9f2177cac84178b153365f037.tar.xz |
cosmetics: Remove some pointless parentheses from return calls.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29759 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_vdpau.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_vdpau.c b/libvo/vo_vdpau.c index 3d6a3f0ca9..2034e4027b 100644 --- a/libvo/vo_vdpau.c +++ b/libvo/vo_vdpau.c @@ -1198,9 +1198,9 @@ static int control(uint32_t request, void *data, ...) } return VO_TRUE; case VOCTRL_PAUSE: - return (int_pause = 1); + return int_pause = 1; case VOCTRL_RESUME: - return (int_pause = 0); + return int_pause = 0; case VOCTRL_QUERY_FORMAT: return query_format(*(uint32_t *)data); case VOCTRL_GET_IMAGE: |