summaryrefslogtreecommitdiffstats
path: root/vidix/sysdep/pci_openbsd.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 00:13:03 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 00:13:03 +0000
commit3acba2c82d002736a5917ad412b34ee0416ba2ac (patch)
treeb30a0a98e033894544af0a328f6aff3b6d4f8e36 /vidix/sysdep/pci_openbsd.c
parent7c0eee9bce417dccfce072bce38e50a4321b96a9 (diff)
downloadmpv-3acba2c82d002736a5917ad412b34ee0416ba2ac.tar.bz2
mpv-3acba2c82d002736a5917ad412b34ee0416ba2ac.tar.xz
cosmetics: Remove useless parentheses from return statements.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26785 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix/sysdep/pci_openbsd.c')
-rw-r--r--vidix/sysdep/pci_openbsd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vidix/sysdep/pci_openbsd.c b/vidix/sysdep/pci_openbsd.c
index 029c1e835a..5daef9ff21 100644
--- a/vidix/sysdep/pci_openbsd.c
+++ b/vidix/sysdep/pci_openbsd.c
@@ -36,14 +36,14 @@ static __inline__ int enable_os_io(void)
{
if (i386_iopl(1) < 0) {
perror("i386_iopl");
- return(errno);
+ return errno;
}
- return(0);
+ return 0;
}
static __inline__ int disable_os_io(void)
{
/* Nothing to do */
- return(0);
+ return 0;
}
#endif