summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-07-09 08:25:21 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-07-09 08:25:21 -0700
commit8e2de972c6935434005575563084195ef67e88e1 (patch)
treed84764457cdcedd4c83e1ac0a8a6516e4199adc7 /lib.c
parentf43fda4e635370689fc248bb7e94e5861151df2c (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index b0f0a64f..78b50751 100644
--- a/lib.c
+++ b/lib.c
@@ -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);