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 2005/10/12 08:07:16 UTC

svn commit: r314795 - /webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c

Author: samisa
Date: Tue Oct 11 23:07:08 2005
New Revision: 314795

URL: http://svn.apache.org/viewcvs?rev=314795&view=rev
Log:
Fixed parameter mismatch

Modified:
    webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c

Modified: webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c?rev=314795&r1=314794&r2=314795&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c (original)
+++ webservices/axis2/trunk/c/modules/common/src/axis2_allocator.c Tue Oct 11 23:07:08 2005
@@ -18,7 +18,9 @@
 #include <stdlib.h>
 #include <string.h>
 
-void* axis2_allocator_strdup(void* ptr)
+void* axis2_allocator_strdup(const void* ptr);
+
+void* axis2_allocator_strdup(const void* ptr)
 {
     if (ptr)
         return strdup(ptr);