diff options
author | Steve Huston <shuston@riverace.com> | 1997-11-22 22:01:33 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1997-11-22 22:01:33 +0000 |
commit | b9848f8c91091edbf9e32bab590bd2d6e7aef742 (patch) | |
tree | 2a0f1cfcca5fdda9840f4e711d81dc66abd6e2d3 /examples/Connection | |
parent | 99048b85b98d3432b8c5f44ae061f28a86373f4b (diff) | |
download | ATCD-b9848f8c91091edbf9e32bab590bd2d6e7aef742.tar.gz |
Added 'const' to "char *r_addr" on line 176.
Diffstat (limited to 'examples/Connection')
-rw-r--r-- | examples/Connection/non_blocking/CPP-connector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Connection/non_blocking/CPP-connector.cpp b/examples/Connection/non_blocking/CPP-connector.cpp index 02c1ddbfa51..c8005d94190 100644 --- a/examples/Connection/non_blocking/CPP-connector.cpp +++ b/examples/Connection/non_blocking/CPP-connector.cpp @@ -173,7 +173,7 @@ IPC_Client<SH, PR_CO_2>::init (int argc, char *argv[]) // Call down to the CONNECTOR's open() method to do the initialization. this->inherited::open (ACE_Reactor::instance ()); - char *r_addr = argc > 1 ? argv[1] : + const char *r_addr = argc > 1 ? argv[1] : ACE_SERVER_ADDRESS (ACE_DEFAULT_SERVER_HOST, ACE_DEFAULT_SERVER_PORT_STR); ACE_Time_Value timeout (argc > 2 |