From ba994b9d368138eb45c4958a38558ed448fcfdf3 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 2 Oct 2018 11:28:07 -0400 Subject: [PATCH] Issue #278 - Fix compiler warning --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index ad46248c..21bb846a 100644 --- a/runtime.c +++ b/runtime.c @@ -760,7 +760,7 @@ object Cyc_has_cycle(object lst) slow_lst = lst; fast_lst = cdr(lst); while (1) { - if ((fast_lst == NULL)) + if (fast_lst == NULL) return boolean_f; if (Cyc_is_pair(fast_lst) == boolean_f) return boolean_f;