diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-02 13:22:45 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-02 13:22:45 +0000 |
commit | 3fa38e923d1fff0b6e126beee2386e6d4f9f7852 (patch) | |
tree | 42ab8a2897636f71068f107c708e0001c36c3847 /TAO/tests/Native_Exceptions | |
parent | c36c611f7a1e0d506e33f186e71e3514a4473c22 (diff) | |
download | ATCD-3fa38e923d1fff0b6e126beee2386e6d4f9f7852.tar.gz |
Fri Feb 2 13:10:14 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/Native_Exceptions')
-rw-r--r-- | TAO/tests/Native_Exceptions/client.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/Native_Exceptions/server.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Native_Exceptions/client.cpp b/TAO/tests/Native_Exceptions/client.cpp index d5d40422f9a..3fd4dc66909 100644 --- a/TAO/tests/Native_Exceptions/client.cpp +++ b/TAO/tests/Native_Exceptions/client.cpp @@ -45,7 +45,7 @@ main (int argc, char *argv[]) try { CORBA::ORB_var orb = - CORBA::ORB_init (argc, argv, ""); + CORBA::ORB_init (argc, argv); if (parse_args (argc, argv) != 0) return 1; diff --git a/TAO/tests/Native_Exceptions/server.cpp b/TAO/tests/Native_Exceptions/server.cpp index dbcbc127f0c..7d3546f8cea 100644 --- a/TAO/tests/Native_Exceptions/server.cpp +++ b/TAO/tests/Native_Exceptions/server.cpp @@ -40,7 +40,7 @@ main (int argc, char *argv[]) try { CORBA::ORB_var orb = - CORBA::ORB_init (argc, argv, ""); + CORBA::ORB_init (argc, argv); CORBA::Object_var poa_object = orb->resolve_initial_references("RootPOA"); |