diff options
| author | mycroft <mycroft@NetBSD.org> | 1998-02-14 07:25:55 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1998-02-14 07:25:55 +0000 |
| commit | 371ff49dd5c27202086145c50faa4ee15f8a54c8 (patch) | |
| tree | 3c81c5053a2e0961c0a851928883d8854079e46b /gnu/libexec | |
| parent | 1584dc4420d58383ea7d072c2d288ebff5af8237 (diff) | |
Kill a GCC warning on the SPARC.
Diffstat (limited to 'gnu/libexec')
| -rw-r--r-- | gnu/libexec/uucp/libunix/serial.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/libexec/uucp/libunix/serial.c b/gnu/libexec/uucp/libunix/serial.c index 84e86193421..3978c84e2de 100644 --- a/gnu/libexec/uucp/libunix/serial.c +++ b/gnu/libexec/uucp/libunix/serial.c @@ -26,7 +26,7 @@ #include "uucp.h" #if USE_RCS_ID -const char serial_rcsid[] = "$Id: serial.c,v 1.4 1998/02/04 14:33:15 christos Exp $"; +const char serial_rcsid[] = "$Id: serial.c,v 1.5 1998/02/14 07:25:55 mycroft Exp $"; #endif #include "uudefs.h" @@ -2028,6 +2028,11 @@ fsysdep_modem_end_dial (qconn, qdial) boolean fbad; int iflags; +#ifdef __GNUC__ + /* XXX This hack is to shut up GCC. */ + (void) &iflags; +#endif + fbad = FALSE; if (fcntl (onew, F_SETFD, |
