summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 3265f7d..2c6fcf7 100644
--- a/parse.c
+++ b/parse.c
@@ -282,7 +282,6 @@ static size_t type_to_str_(Type *t, char *buffer, size_t bufsize) {
/* return value should be freed by caller */
static char *type_to_str(Type *t) {
- /* TODO allow types >255 chars */
char *ret = err_malloc(256);
type_to_str_(t, ret, 256);
return ret;