summaryrefslogtreecommitdiff
path: root/examples/Service_Configurator
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-25 21:42:00 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-25 21:42:00 +0000
commite42dcaa68a677c77f4e5353dfbe2d4699bbd5878 (patch)
tree20191ccf54e044fbd7044ca22667ec2578f3b884 /examples/Service_Configurator
parente291b625e1bf3fdc98b32e9d08b296d27b31d493 (diff)
downloadATCD-e42dcaa68a677c77f4e5353dfbe2d4699bbd5878.tar.gz
added args to declaration of main ()
Diffstat (limited to 'examples/Service_Configurator')
-rw-r--r--examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp2
-rw-r--r--examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
index 268e10513db..2776139c802 100644
--- a/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/local_spipe_client_test.cpp
@@ -81,7 +81,7 @@ main(int argc, char *argv[])
#else
#include <stdio.h>
int
-main (void)
+main (int, char *[])
{
ACE_ERROR_RETURN ((LM_ERROR, "This feature is not supported\n"), -1);
}
diff --git a/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp b/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
index c9abb6dc2b9..80931b584d4 100644
--- a/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
+++ b/examples/Service_Configurator/IPC-tests/client/remote_thr_stream_client_test.cpp
@@ -89,7 +89,7 @@ main (int argc, char *argv[])
}
#else
int
-main (void)
+main (int, char *[])
{
ACE_ERROR_RETURN ((LM_ERROR, "you must have TLI to run this test\n"), 1);
}