summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-23 13:23:14 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-23 13:23:14 +0000
commitce17f21bb14509acb2ac5b934e498c1c1ff5f8fb (patch)
treeec544a78315703a4a91cb524d6c4a08e75557726 /libvo
parent8ea5ce98d8a51de0d13fcd61e72f2278318adf3d (diff)
downloadmpv-ce17f21bb14509acb2ac5b934e498c1c1ff5f8fb.tar.bz2
mpv-ce17f21bb14509acb2ac5b934e498c1c1ff5f8fb.tar.xz
cosmetics: one more round of whitespace changes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27992 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_wii.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvo/vo_wii.c b/libvo/vo_wii.c
index f9728a3fd5..b1f8ead6bf 100644
--- a/libvo/vo_wii.c
+++ b/libvo/vo_wii.c
@@ -109,7 +109,7 @@ static int fb_preinit(int reset)
}
fb_orig_vinfo = fb_vinfo;
- if ((fb_tty_fd = open (TTY_DEV_NAME, O_RDWR)) < 0) {
+ if ((fb_tty_fd = open(TTY_DEV_NAME, O_RDWR)) < 0) {
mp_msg(MSGT_VO, MSGL_ERR, "notice: Can't open %s: %s\n", TTY_DEV_NAME, strerror(errno));
goto err_out_fd;
}
@@ -229,13 +229,13 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
for (temp = 0; temp < fb_size; temp += 4)
memcpy(frame_buffer + temp, (void *) &black, 4);
- vt_fd = open (TTY_DEV_NAME, O_WRONLY);
+ vt_fd = open(TTY_DEV_NAME, O_WRONLY);
if (vt_doit && vt_fd == -1) {
mp_msg(MSGT_VO, MSGL_ERR, "Can't open %s: %s\n", TTY_DEV_NAME, strerror(errno));
vt_doit = 0;
}
- vt_fp = fdopen (vt_fd, "w");
+ vt_fp = fdopen(vt_fd, "w");
if (vt_doit && !vt_fp) {
mp_msg(MSGT_VO, MSGL_ERR, "Can't fdopen %s: %s\n", TTY_DEV_NAME, strerror(errno));
vt_doit = 0;
@@ -249,7 +249,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
static int query_format(uint32_t format)
{
- if (!fb_preinit (0))
+ if (!fb_preinit(0))
return 0;
if (format != IMGFMT_YUY2)