From a8820459d5af946970f4db512d061b6b09dfebe3 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 2 Feb 1987 20:54:56 +0000 Subject: [PATCH] obeyed a warning --- lang/cem/libcc/gen/isatty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1