diff vidix/sysdep/pci_mach386.c @ 26753:502f04b67653

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 00:13:03 +0000
parents 9c4ad35fabc5
children 958431e2cde0
line wrap: on
line diff
--- a/vidix/sysdep/pci_mach386.c	Thu May 15 21:25:41 2008 +0000
+++ b/vidix/sysdep/pci_mach386.c	Fri May 16 00:13:03 2008 +0000
@@ -35,13 +35,13 @@
     io_fd = -1 ;
     if ((io_fd = open("/dev/iopl", O_RDWR, 0)) < 0) {
         perror("/dev/iopl");
-        return(errno);
+        return errno;
     }
-    return(0);
+    return 0;
 }
 
 static __inline__ int disable_os_io(void)
 {
     close(io_fd);
-    return(0);
+    return 0;
 }