Author: damitha
Date: Thu Feb 14 22:47:43 2008
New Revision: 627963
URL: http://svn.apache.org/viewvc?rev=627963&view=rev
Log:
Fixed build break due to changes in param.c
Modified:
webservices/sandesha/trunk/c/include/sandesha2_property_bean.h
webservices/sandesha/trunk/c/src/util/property_bean.c
Modified: webservices/sandesha/trunk/c/include/sandesha2_property_bean.h
URL:
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/include/sandesha2_property_bean.h?rev=627963&r1=627962&r2=627963&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/include/sandesha2_property_bean.h (original)
+++ webservices/sandesha/trunk/c/include/sandesha2_property_bean.h Thu Feb 14
22:47:43 2008
@@ -183,12 +183,12 @@
const axutil_env_t *env,
axis2_char_t *db_path);
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
sandesha2_property_bean_free(
sandesha2_property_bean_t *bean,
const axutil_env_t *env);
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
sandesha2_property_bean_free_void_arg(
void *arg,
const axutil_env_t *env);
Modified: webservices/sandesha/trunk/c/src/util/property_bean.c
URL:
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/property_bean.c?rev=627963&r1=627962&r2=627963&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/util/property_bean.c (original)
+++ webservices/sandesha/trunk/c/src/util/property_bean.c Thu Feb 14 22:47:43
2008
@@ -66,7 +66,7 @@
}
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
sandesha2_property_bean_free(
sandesha2_property_bean_t *bean,
const axutil_env_t *env)
@@ -96,10 +96,10 @@
bean->storage_mgr = NULL;
}
AXIS2_FREE(env->allocator, bean);
- return AXIS2_SUCCESS;
+ return;
}
-axis2_status_t AXIS2_CALL
+void AXIS2_CALL
sandesha2_property_bean_free_void_arg(
void *arg,
const axutil_env_t *env)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]