mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 17:27:33 +02:00
Issue #278 - Fix compiler warning
This commit is contained in:
parent
5bfc61ccb3
commit
ba994b9d36
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue