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 na...@apache.org on 2007/11/12 12:20:29 UTC

svn commit: r594084 - /webservices/axis2/trunk/c/util/src/error.c

Author: nandika
Date: Mon Nov 12 03:20:26 2007
New Revision: 594084

URL: http://svn.apache.org/viewvc?rev=594084&view=rev
Log:
compile error fixed in error.c

Modified:
    webservices/axis2/trunk/c/util/src/error.c

Modified: webservices/axis2/trunk/c/util/src/error.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/error.c?rev=594084&r1=594083&r2=594084&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/error.c (original)
+++ webservices/axis2/trunk/c/util/src/error.c Mon Nov 12 03:20:26 2007
@@ -41,8 +41,8 @@
  *    occupied spaces. 
  */
 
-AXIS2_EXPORT const axis2_char_t 
-    *axutil_error_messages[AXIS2_ERROR_MESSAGE_ARRAY_SIZE];
+AXIS2_EXPORT const axis2_char_t*
+axutil_error_messages[AXIS2_ERROR_MESSAGE_ARRAY_SIZE];
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_error_init()
@@ -576,7 +576,7 @@
     if (error)
     {
         if (error->error_number > AXIS2_ERROR_NONE &&
-            error->error_number < AXIS2_ERROR_MAX) /* TODO; This needs to be 
+            error->error_number < AXUTIL_ERROR_MAX) /* TODO; This needs to be 
             fixed to include module defined and user defined errors */
             message = axutil_error_messages[error->error_number];
         else



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