summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@inai.de>2016-06-23 10:04:49 +0200
committerAdrian Thurston <thurston@complang.org>2016-06-29 12:20:03 -0400
commit57b67570de7c0a677531bf889bb4761cd0a97124 (patch)
tree42221fc91f931ba8ba7b2d58496e8ecb5606d481
parentcd309a45891753a456843eee3f9e397def502924 (diff)
downloadcolm-57b67570de7c0a677531bf889bb4761cd0a97124.tar.gz
fix a spello which caused a compilation failure
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 076319f4..12aebf84 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -68,7 +68,7 @@ typedef struct colm_struct struct_t;
i = (type) w; \
} while(0)
- #define read_type_p( type, i, p ) do { \
+ #define read_type_p( Type, i, p ) do { \
i = ((Type) p[0]); \
i |= ((Type) p[1]) << 8; \
i |= ((Type) p[2]) << 16; \