Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23224 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 58654 invoked by uid 1010); 10 May 2006 13:40:02 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 58639 invoked from network); 10 May 2006 13:40:02 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 10 May 2006 13:40:02 -0000 X-PHP-List-Original-Sender: rrichards@ctindustries.net X-Host-Fingerprint: 216.117.147.250 unknown Linux 2.4/2.6 Received: from ([216.117.147.250:50385] helo=ctindustries.net) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 46/5E-19568-23DE1644 for ; Wed, 10 May 2006 09:40:02 -0400 Received: from [127.0.0.1] (dsta-aa203.pivot.net [66.186.171.203]) (authenticated bits=0) by ctindustries.net (8.12.8/8.12.8) with ESMTP id k4ADddPI007039 for ; Wed, 10 May 2006 09:39:39 -0400 Message-ID: <4461ED79.8060908@ctindustries.net> Date: Wed, 10 May 2006 09:41:13 -0400 User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: internals Content-Type: multipart/mixed; boundary="------------060308030108070202050704" X-Antivirus: avast! (VPS 0619-0, 05/08/2006), Outbound message X-Antivirus-Status: Clean X-Virus-Scanned: ClamAV 0.88.1/1453/Wed May 10 03:10:59 2006 on ctindustries.net X-Virus-Status: Clean Subject: patch: zend_API.c - compile file From: rrichards@ctindustries.net (Rob Richards) --------------060308030108070202050704 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit The extra semi-colon is causing build to fail here. Rob --------------060308030108070202050704 Content-Type: text/plain; name="zend_API.c.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="zend_API.c.diff.txt" Index: zend_API.c =================================================================== RCS file: /repository/ZendEngine2/zend_API.c,v retrieving revision 1.296.2.27.2.1 diff -u -r1.296.2.27.2.1 zend_API.c --- zend_API.c 9 May 2006 23:53:23 -0000 1.296.2.27.2.1 +++ zend_API.c 10 May 2006 13:29:22 -0000 @@ -1531,7 +1531,7 @@ int count=0, unload=0; HashTable *target_function_table = function_table; int error_type; - zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__tostring = NULL;; + zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__tostring = NULL; char *lowercase_name; int fname_len; char *lc_class_name = NULL; --------------060308030108070202050704--