summaryrefslogtreecommitdiffstats
path: root/vidix/sysdep/pci_mach386.c
diff options
context:
space:
mode:
Diffstat (limited to 'vidix/sysdep/pci_mach386.c')
-rw-r--r--vidix/sysdep/pci_mach386.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vidix/sysdep/pci_mach386.c b/vidix/sysdep/pci_mach386.c
index d0096faaa6..3445a11f7f 100644
--- a/vidix/sysdep/pci_mach386.c
+++ b/vidix/sysdep/pci_mach386.c
@@ -35,13 +35,13 @@ static __inline__ int enable_os_io(void)
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;
}