summaryrefslogtreecommitdiff
path: root/src/type.h
diff options
context:
space:
mode:
authorPeter Reijnders <peter.reijnders@verpeteren.nl>2016-12-19 11:34:59 -0500
committerAdrian Thurston <thurston@colm.net>2016-12-19 11:38:52 -0500
commit355111edfa4aab0ffc42cf1009bd99ead511e6f1 (patch)
tree84d2936665b35e14819b44226cb671243db87938 /src/type.h
parent1c5f44f59c92ef5259f37475758fb4c9dc8da711 (diff)
downloadcolm-355111edfa4aab0ffc42cf1009bd99ead511e6f1.tar.gz
minor fixes: a missing cast, no comma at enum end, no redefined typedefs
Diffstat (limited to 'src/type.h')
-rw-r--r--src/type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type.h b/src/type.h
index e36b41d6..bc49a6ae 100644
--- a/src/type.h
+++ b/src/type.h
@@ -35,7 +35,7 @@ enum TYPE
TYPE_INT = 0x07,
TYPE_BOOL = 0x08,
TYPE_LIST_PTRS = 0x09,
- TYPE_MAP_PTRS = 0x0a,
+ TYPE_MAP_PTRS = 0x0a
};
#endif /* _COLM_TYPE_H */