Re: [Monetdb-developers] [Monetdb-checkins] MonetDB5/src/mal mal_interpreter.mx, Nov2009, 1.319.2.6, 1.319.2.7
Martin Kersten wrote:
Update of /cvsroot/monetdb/MonetDB5/src/mal In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv348
Modified Files: Tag: Nov2009 mal_interpreter.mx Log Message: Silence compiler by fixing the call
Index: mal_interpreter.mx =================================================================== RCS file: /cvsroot/monetdb/MonetDB5/src/mal/mal_interpreter.mx,v retrieving revision 1.319.2.6 retrieving revision 1.319.2.7 diff -u -d -r1.319.2.6 -r1.319.2.7 --- mal_interpreter.mx 5 Nov 2009 13:11:15 -0000 1.319.2.6 +++ mal_interpreter.mx 6 Nov 2009 07:00:51 -0000 1.319.2.7 @@ -1319,7 +1319,7 @@ stream_printf(cntxt->fdout,"start thread in background\n"); #endif if (stk == NULL){ - GDKerror(MAL, "mal.interpreter", MAL_STACK_FAIL); + GDKerror(MAL, "mal.interpreter:" MAL_STACK_FAIL); return; } sve= stk->keepAlive;
------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Monetdb-checkins mailing list Monetdb-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-checkins
Adding a colon to the string is hardly fixing the call. The problem is, GDKerror is not createException: the first argument is a format string. -- Sjoerd Mullender
participants (1)
-
Sjoerd Mullender