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 sa...@apache.org on 2005/11/16 09:26:58 UTC

svn commit: r344953 - /webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c

Author: samisa
Date: Wed Nov 16 00:26:34 2005
New Revision: 344953

URL: http://svn.apache.org/viewcvs?rev=344953&view=rev
Log:
Added the initial compiling version. Needs bit of work on TODOs pending

Modified:
    webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c

Modified: webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c?rev=344953&r1=344952&r2=344953&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c (original)
+++ webservices/axis2/trunk/c/modules/core/addr/src/relates_to.c Wed Nov 16 00:26:34 2005
@@ -83,7 +83,7 @@
 
 axis2_char_t* AXIS2_CALL axis2_relates_to_get_value(struct axis_relates_to *relates_to, axis2_env_t **env) 
 {
-    AXIS2_FUNC_PARAM_CHECK(relates_to, env,NULL);
+    AXIS2_FUNC_PARAM_CHECK(relates_to, env, NULL);
     return AXIS2_INTF_TO_IMPL(relates_to)->value;
 }
 
@@ -116,7 +116,7 @@
 
 axis2_char_t* AXIS2_CALL axis2_relates_to_get_relationship_type(struct axis_relates_to *relates_to, axis2_env_t **env) 
 {
-    AXIS2_FUNC_PARAM_CHECK(relates_to, env,NULL);
+    AXIS2_FUNC_PARAM_CHECK(relates_to, env, NULL);
     return AXIS2_INTF_TO_IMPL(relates_to)->relationship_type;
 }
 
@@ -124,7 +124,7 @@
 {
     axis2_relates_to_impl_t *relates_to_impl = NULL;
     
-    AXIS2_FUNC_PARAM_CHECK(qname, env,AXIS2_FAILURE);
+    AXIS2_FUNC_PARAM_CHECK(relates_to, env, AXIS2_FAILURE);
     
     relates_to_impl = AXIS2_INTF_TO_IMPL(relates_to);