From b00d0ecc4bb4e881f675af2cead432ae99e98180 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 2 Dec 2013 19:25:21 -0800 Subject: * stream.c (stdio_set_prop): Fix reversed boolean. --- stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream.c') diff --git a/stream.c b/stream.c index b401c911..549ad244 100644 --- a/stream.c +++ b/stream.c @@ -241,7 +241,7 @@ static val stdio_set_prop(val stream, val ind, val prop) { if (ind == real_time_k) { struct stdio_handle *h = (struct stdio_handle *) stream->co.handle; - h->is_real_time = prop ? 0 : 1; + h->is_real_time = prop ? 1 : 0; return t; } return nil; -- cgit v1.2.3