summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/echo/client.cpp')
-rw-r--r--TAO/examples/Simple/echo/client.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/examples/Simple/echo/client.cpp b/TAO/examples/Simple/echo/client.cpp
index f2aa863069b..8b639076371 100644
--- a/TAO/examples/Simple/echo/client.cpp
+++ b/TAO/examples/Simple/echo/client.cpp
@@ -5,21 +5,21 @@
// The client program for the application.
int
-main (int argc, char **argv)
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
Echo_Client_i client;
-
+
ACE_DEBUG ((LM_DEBUG,
"\nEcho client\n\n"));
if (client.run ("Echo",
- argc,
+ argc,
argv) == -1)
- return -1;
+ return -1;
else
return 0;
-
+
}
-
+