From: compudj Date: Fri, 7 Jul 2006 19:43:19 +0000 (+0000) Subject: update parser X-Git-Tag: v0.12.20~1502 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=500d64659e900698fdbbd059d0624efef7fddad5;p=lttv.git update parser git-svn-id: http://ltt.polymtl.ca/svn@1987 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index ab24a6c2..2d6b27d5 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -998,7 +998,7 @@ type_descriptor_t * find_named_type(char *name, table_t * named_types) { type_descriptor_t *t; - t = table_find(named_types,name); + t = (type_descriptor_t*)table_find(named_types,name); return t; }