diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-11 00:10:13 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-11 00:10:13 +0000 |
commit | 3f1d1967b2f6b99bae55d551f3dddfc6624d6065 (patch) | |
tree | 701cbb6039557ae1fd1973ed46fdebcdc44f981b /TAO/examples/Simple/echo | |
parent | 53597965ca8c6db969ecbc42d84067e7b777f0be (diff) | |
download | ATCD-3f1d1967b2f6b99bae55d551f3dddfc6624d6065.tar.gz |
ChangeLogTag:Sat Mar 10 16:08:46 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/examples/Simple/echo')
-rw-r--r-- | TAO/examples/Simple/echo/Echo_i.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/examples/Simple/echo/Echo_i.cpp b/TAO/examples/Simple/echo/Echo_i.cpp index c8511d5b026..aede6f04129 100644 --- a/TAO/examples/Simple/echo/Echo_i.cpp +++ b/TAO/examples/Simple/echo/Echo_i.cpp @@ -40,10 +40,10 @@ Echo_i::echo_list (const char *, Echo::List_var list; { - Echo_List *tmp - ACE_NEW_RETURN (tmp, - Echo::List (3), - 0); + Echo::List *tmp; + ACE_NEW_RETURN (tmp, + Echo::List (3), + 0); // Pass ownership to the _var, pitty that ACE_NEW_RETURN cannot // assign to T_vars directly. list = tmp; |