You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/05/30 19:40:51 UTC

svn commit: r410325 - /webservices/axis/trunk/c/src/cbindings/client/CallC.cpp

Author: nadiramra
Date: Tue May 30 10:40:51 2006
New Revision: 410325

URL: http://svn.apache.org/viewvc?rev=410325&view=rev
Log:
fix compile errors 

Modified:
    webservices/axis/trunk/c/src/cbindings/client/CallC.cpp

Modified: webservices/axis/trunk/c/src/cbindings/client/CallC.cpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/cbindings/client/CallC.cpp?rev=410325&r1=410324&r2=410325&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/cbindings/client/CallC.cpp (original)
+++ webservices/axis/trunk/c/src/cbindings/client/CallC.cpp Tue May 30 10:40:51 2006
@@ -3394,7 +3394,12 @@
 
 
 AXISC_STORAGE_CLASS_INFO 
-const char * axiscCallGetFaultAsXMLString(AXISCHANDLE call) 
+#ifdef __OS400__
+const char *
+#else
+const xsd__string 
+#endif
+axiscCallGetFaultAsXMLString(AXISCHANDLE call) 
 {
     Call *c = (Call*)call;
     
@@ -3411,7 +3416,7 @@
         axiscAxisInvokeExceptionHandler(-1, "Unrecognized exception thrown.", NULL, NULL);
     }
     
-    return (xsdc__string)NULL;
+    return (const char *)NULL;
 }
 
 AXISC_STORAGE_CLASS_INFO 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org