From 3c5f8883e839969da0db69541b5cb8ff35705069 Mon Sep 17 00:00:00 2001 From: Diane Bruce Date: Wed, 26 Jul 2006 14:12:34 +0000 Subject: [PATCH] - Oops. missed the /* Fallback (nothing) */ case git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@209 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- ptt_unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ptt_unix.c b/ptt_unix.c index 9dcb8f8a2..deeaced4d 100644 --- a/ptt_unix.c +++ b/ptt_unix.c @@ -244,9 +244,9 @@ dev_is_parport(int fd) #else /* Fallback (nothing) */ int -dev_is_parport(const char *fname) +dev_is_parport(int fd) { - return(-1); + return(0); } #endif