From c4c0eb4d12a40d835d83739e711da6c84bbecd85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 13 Apr 2005 17:23:30 +0000 Subject: bug-fixes svn path=/trunk/externals/zexy/; revision=2761 --- src/lpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lpt.c') 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 */ -- cgit v1.2.1