Issue #278 - Fix compiler warning

This commit is contained in:
Justin Ethier 2018-10-02 11:28:07 -04:00
parent 5bfc61ccb3
commit ba994b9d36

View file

@ -760,7 +760,7 @@ object Cyc_has_cycle(object lst)
slow_lst = lst; slow_lst = lst;
fast_lst = cdr(lst); fast_lst = cdr(lst);
while (1) { while (1) {
if ((fast_lst == NULL)) if (fast_lst == NULL)
return boolean_f; return boolean_f;
if (Cyc_is_pair(fast_lst) == boolean_f) if (Cyc_is_pair(fast_lst) == boolean_f)
return boolean_f; return boolean_f;