From 7d712234f926c2fdcfae61be080da5c34ab91dbb Mon Sep 17 00:00:00 2001 From: Damien Laniel Date: Fri, 27 Jul 2007 17:31:01 +0000 Subject: changed abort message when too many objects are allocated --- swig/Lasso.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swig/Lasso.i b/swig/Lasso.i index 06cbe787..821025f8 100644 --- a/swig/Lasso.i +++ b/swig/Lasso.i @@ -596,7 +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, "Too many allocated objects. You must increase the size of node_infos array in Lasso.i.\n"); + fprintf(stderr, "Too many allocated objects. You must increase NODE_INFOS_SIZE constant in Lasso.i.\n"); abort(); } } -- cgit