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 sa...@apache.org on 2007/09/14 05:11:24 UTC

svn commit: r575519 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl

Author: samisa
Date: Thu Sep 13 20:11:24 2007
New Revision: 575519

URL: http://svn.apache.org/viewvc?rev=575519&view=rev
Log:
Added type casting to the void pointer created

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl?rev=575519&r1=575518&r2=575519&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl Thu Sep 13 20:11:24 2007
@@ -70,7 +70,7 @@
 	{
 	    axis2_svc_skeleton_t *svc_skeleton = NULL;
         /* Allocate memory for the structs */
-        svc_skeleton = AXIS2_MALLOC(env->allocator,
+        svc_skeleton = (axis2_svc_skeleton_t *)AXIS2_MALLOC(env->allocator,
             sizeof(axis2_svc_skeleton_t));
 
         svc_skeleton->ops = &amp;<xsl:value-of select="$skeletonname"/>_svc_skeleton_ops_var;



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