diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-07-09 08:25:21 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-07-09 08:25:21 -0700 |
commit | 8e2de972c6935434005575563084195ef67e88e1 (patch) | |
tree | d84764457cdcedd4c83e1ac0a8a6516e4199adc7 /lib.c | |
parent | f43fda4e635370689fc248bb7e94e5861151df2c (diff) | |
download | txr-8e2de972c6935434005575563084195ef67e88e1.tar.gz txr-8e2de972c6935434005575563084195ef67e88e1.tar.bz2 txr-8e2de972c6935434005575563084195ef67e88e1.zip |
lib: c++ fix.
lib.c (built_in_type): Use i for stepping over the
enumeration, because type_t has no postfix ++ operator
for i++. The code2type function takes an int, and so no
cast is required.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -211,7 +211,7 @@ static val code2type(int code) val built_in_type_p(val sym) { - type_t i; + int i; for (i = NIL; i <= MAXTYPE; i++) { val type = code2type(i); |