From cbab331e47ea451e522e4157727de2b5f822a856 Mon Sep 17 00:00:00 2001 From: Kevin Ruland Date: Wed, 5 Oct 2005 14:11:35 +0000 Subject: [PATCH] Fixed error in Printv in functionWrapper. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7593 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/php4.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/php4.cxx b/Source/Modules/php4.cxx index a214e57cf..cc23bb8ce 100644 --- a/Source/Modules/php4.cxx +++ b/Source/Modules/php4.cxx @@ -1216,7 +1216,7 @@ public: /* Error handling code */ Printf(f->code,"fail:\n"); Printv(f->code,cleanup,NIL); - Printv(f->code,"zend_error(ErrorCode(),ErrorMsg());"); + Printv(f->code,"zend_error(ErrorCode(),ErrorMsg());",NIL); Printf(f->code, "}\n");