diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -582,8 +582,8 @@ obj_t *consp(obj_t *obj) if (!obj) { return nil; } else { - type_t type = type(obj); - return (type == CONS || type == LCONS) ? t : nil; + type_t ty = type(obj); + return (ty == CONS || ty == LCONS) ? t : nil; } } |