summaryrefslogtreecommitdiffstats
path: root/vidix/sysdep/pci_isc.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_isc.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_isc.c')
-rw-r--r--vidix/sysdep/pci_isc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vidix/sysdep/pci_isc.c b/vidix/sysdep/pci_isc.c
index be2ed10556..17fb2b6106 100644
--- a/vidix/sysdep/pci_isc.c
+++ b/vidix/sysdep/pci_isc.c
@@ -41,7 +41,7 @@ static __inline__ int enable_os_io(void)
#else
sysi86(SI86V86, V86SC_IOPL, PS_IOPL);
#endif
- return(0);
+ return 0;
}
static __inline__ int disable_os_io(void)
@@ -51,5 +51,5 @@ static __inline__ int disable_os_io(void)
#else
sysi86(SI86V86, V86SC_IOPL, 0);
#endif
- return(0);
+ return 0;
}