You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ja...@apache.org on 2005/11/21 11:01:57 UTC

svn commit: r345886 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ValidXMLCharIsInterpretedAsCPPCommandClient.cpp

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 <iostream>
 #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;
 }