summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_interface.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-01 19:56:15 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-01 19:56:15 +0000
commitecffb94ae3a43e94393ebd50f9750a0ab2987b41 (patch)
tree21e956fc4b95d21204e8c3ce366e0ebf37fbeffe /TAO/TAO_IDL/be/be_interface.cpp
parent6d9fa3792321e134addec5ff954bf57b24910503 (diff)
downloadATCD-ecffb94ae3a43e94393ebd50f9750a0ab2987b41.tar.gz
Added missing parameter to ACE_ERROR message. Would have caused core
dump if called.
Diffstat (limited to 'TAO/TAO_IDL/be/be_interface.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_interface.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_interface.cpp b/TAO/TAO_IDL/be/be_interface.cpp
index c2f91b89c1f..84eb6e70686 100644
--- a/TAO/TAO_IDL/be/be_interface.cpp
+++ b/TAO/TAO_IDL/be/be_interface.cpp
@@ -1679,14 +1679,15 @@ be_interface::gen_gperf_lookup_methods (void)
if (process.spawn (process_options) == -1)
{
ACE_ERROR ((LM_ERROR,
- "Error:%p:Couldnt spawn a process for gperf program\n"));
+ "Error:%p:Couldnt spawn a process for gperf program\n",
+ "process.spawn"));
result = -1;
}
// Wait for gperf to complete.
else if (process.wait () == -1)
{
ACE_ERROR ((LM_ERROR,
- "Error:%p:Error on wait'ing for completion of gperf program.\n",
+ "Error:%p:Error on waiting for completion of gperf program.\n",
"process.wait"));
result = -1;
}