Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 36519 invoked from network); 21 Nov 2005 10:02:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Nov 2005 10:02:28 -0000 Received: (qmail 63959 invoked by uid 500); 21 Nov 2005 10:02:18 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 63937 invoked by uid 500); 21 Nov 2005 10:02:18 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 63926 invoked by uid 99); 21 Nov 2005 10:02:18 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 21 Nov 2005 02:02:18 -0800 Received: (qmail 36292 invoked by uid 65534); 21 Nov 2005 10:01:57 -0000 Message-ID: <20051121100157.36287.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r345886 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp Date: Mon, 21 Nov 2005 10:01:57 -0000 To: axis-cvs@ws.apache.org From: jamejose@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jamejose Date: Mon Nov 21 02:01:43 2005 New Revision: 345886 URL: http://svn.apache.org/viewcvs?rev=345886&view=rev Log: changed return type of main to 'int' Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp?rev=345886&r1=345885&r2=345886&view=diff ============================================================================== --- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp (original) +++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp Mon Nov 21 02:01:43 2005 @@ -16,7 +16,7 @@ #include #include "ValidXMLCharIsInterpretedAsCPPCommand.hpp" -void main( int argc, char * argv[]) +int main( int argc, char * argv[]) { bool bSuccess = false; int iRetryIterationCount = 3; @@ -131,5 +131,6 @@ else { cout << "---------------------- TEST DID NOT COMPLETE -----------------------------" << endl; - } + } + return 0; }