summaryrefslogtreecommitdiff
path: root/examples/ASX
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-07 05:28:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-06-07 05:28:39 +0000
commit5f049a37e111872237fd6cec88c602c619259e66 (patch)
tree80febd0f4630d0f36572a66b69861b2bddc26f60 /examples/ASX
parentf675792ad48fd536b21e22599f1409a0bb502c54 (diff)
downloadATCD-5f049a37e111872237fd6cec88c602c619259e66.tar.gz
.
Diffstat (limited to 'examples/ASX')
-rw-r--r--examples/ASX/Event_Server/Transceiver/transceiver.h4
-rw-r--r--examples/ASX/UPIPE_Event_Server/Supplier_Router.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/ASX/Event_Server/Transceiver/transceiver.h b/examples/ASX/Event_Server/Transceiver/transceiver.h
index 3f89f37b3de..28bde9bfb07 100644
--- a/examples/ASX/Event_Server/Transceiver/transceiver.h
+++ b/examples/ASX/Event_Server/Transceiver/transceiver.h
@@ -51,10 +51,10 @@ private:
u_short port_number_;
// Port number of event server.
- char *host_name_;
+ const char *host_name_;
// Name of event server.
- char *role_;
+ const char *role_;
// Are we playing the Consumer or Supplier role?
};
diff --git a/examples/ASX/UPIPE_Event_Server/Supplier_Router.cpp b/examples/ASX/UPIPE_Event_Server/Supplier_Router.cpp
index 8acac06b97b..11f9e94ddb6 100644
--- a/examples/ASX/UPIPE_Event_Server/Supplier_Router.cpp
+++ b/examples/ASX/UPIPE_Event_Server/Supplier_Router.cpp
@@ -59,7 +59,7 @@ Supplier_Router::open (void *)
char *argv[3];
argv[0] = (char *) this->name ();
- argv[1] = options.supplier_file ();
+ argv[1] = (char *) options.supplier_file ();
argv[2] = 0;
if (this->init (1, &argv[1]) == -1)