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 du...@apache.org on 2008/04/17 08:32:52 UTC

svn commit: r648973 - /webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c

Author: dushshantha
Date: Wed Apr 16 23:32:46 2008
New Revision: 648973

URL: http://svn.apache.org/viewvc?rev=648973&view=rev
Log:
Fixed compilation error in sample code 

Modified:
    webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c

Modified: webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c?rev=648973&r1=648972&r2=648973&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c (original)
+++ webservices/axis2/trunk/c/samples/codegen/server/calculator/axis2_skel_Calculator.c Wed Apr 16 23:32:46 2008
@@ -42,7 +42,7 @@
             
             _divresponse2 = adb_divResponse_create(env);
             int_2 = int_0 / int_1;
-            adb_divResponse_set_addReturn(_divresponse2, env, int_2);
+            adb_divResponse_set_divReturn(_divresponse2, env, int_2);
             
             return _divresponse2;
         }
@@ -78,7 +78,7 @@
             
             _mulresponse2 = adb_mulResponse_create(env);
             int_5 = int_3 * int_4;
-            adb_mulResponse_set_addReturn(_mulresponse2, env, int_5);
+            adb_mulResponse_set_mulReturn(_mulresponse2, env, int_5);
             
             return _mulresponse2;
         }



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