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 2007/11/12 07:10:39 UTC

svn commit: r594032 - /webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c

Author: samisa
Date: Sun Nov 11 22:10:35 2007
New Revision: 594032

URL: http://svn.apache.org/viewvc?rev=594032&view=rev
Log:
Fixed warning

Modified:
    webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c

Modified: webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c?rev=594032&r1=594031&r2=594032&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c (original)
+++ webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c Sun Nov 11 22:10:35 2007
@@ -229,7 +229,7 @@
         axiom_text_t *axiom_text = (axiom_text_t*)axiom_node_get_data_element(res_om_node, env);
         data_handler = axiom_text_get_data_handler(axiom_text, env);
 
-        axiom_data_handler_set_file_name(data_handler, env, to_save_name);
+        axiom_data_handler_set_file_name(data_handler, env, (axis2_char_t *)to_save_name);
         axiom_data_handler_write_to(data_handler, env);
     }else if(axiom_node_get_node_type(res_om_node, env) == AXIOM_ELEMENT){
         res_om_ele = axiom_node_get_data_element(res_om_node, env);



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