From dbeccd5b902a2fdd4bc59c4e59c62d025a19f4e0 Mon Sep 17 00:00:00 2001 From: Damien Laniel Date: Fri, 27 Jul 2007 17:29:30 +0000 Subject: changed abort message when too many objects are allocated --- swig/Lasso.i | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/swig/Lasso.i b/swig/Lasso.i index 9f817842..06cbe787 100644 --- a/swig/Lasso.i +++ b/swig/Lasso.i @@ -596,8 +596,7 @@ static void set_node_info(node_info *info, char *name, char *superName, swig_typ #endif node_info_count++; if (node_info_count >= NODE_INFOS_SIZE) { - fprintf(stderr, "node_infos has reached its limit. This is a know bug. \ -It should be dynamically reallocated"); + fprintf(stderr, "Too many allocated objects. You must increase the size of node_infos array in Lasso.i.\n"); abort(); } } -- cgit