From: ceriel Date: Mon, 2 Feb 1987 20:54:56 +0000 (+0000) Subject: obeyed a warning X-Git-Tag: release-5-5~4801 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a8820459d5af946970f4db512d061b6b09dfebe3;p=ack.git obeyed a warning --- diff --git a/lang/cem/libcc/gen/isatty.c b/lang/cem/libcc/gen/isatty.c index aeee7ff7a..b68171fef 100644 --- a/lang/cem/libcc/gen/isatty.c +++ b/lang/cem/libcc/gen/isatty.c @@ -6,6 +6,6 @@ isatty(f) where gtty is an ioctl(..., TCGETA, ...) */ - if (gtty(f, &buf) < 0) return 0; + if (gtty(f, buf) < 0) return 0; return 1; }