- 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
This commit is contained in:
Diane Bruce 2006-07-26 14:12:34 +00:00
parent 9350a4197c
commit 3c5f8883e8

View File

@ -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