aboutsummaryrefslogtreecommitdiff
path: root/src/lpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lpt.c')
-rw-r--r--src/lpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lpt.c b/src/lpt.c
index a48ec07..b90ce80 100644
--- a/src/lpt.c
+++ b/src/lpt.c
@@ -71,11 +71,11 @@ static int sys_inb(int port)
static void sys_outb(unsigned char byte, int port)
{
- outb(byte, port);
+ outb(byte, port);
}
static int sys_inb(int port)
{
- inb(port);
+ return inb(port);
}
# endif /* NT */
#endif /* Z_WANT_LP */