summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-11-26 08:48:16 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-11-26 08:48:16 +0100
commit158f1e5a8df717d4ce994b0eb4764b8c66841305 (patch)
treee182778a5fd786655617b493354051e23f9e98e3 /TAO/TAO_IDL
parent235e8ad07ddfcc8eaf5b381865a9cd10c45b8d0d (diff)
downloadATCD-158f1e5a8df717d4ce994b0eb4764b8c66841305.tar.gz
Put ERROR in the message when tao_idl can't open a file so that it is parsed by the scoreboard scripts as error
* TAO/TAO_IDL/driver/drv_preproc.cpp:
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/driver/drv_preproc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp
index f23ea5c2d7d..e6de7325526 100644
--- a/TAO/TAO_IDL/driver/drv_preproc.cpp
+++ b/TAO/TAO_IDL/driver/drv_preproc.cpp
@@ -1132,13 +1132,12 @@ DRV_pre_proc (const char *myfile)
// Rename temporary files so that they have extensions accepted
// by the preprocessor.
-
FILE * const file = ACE_OS::fopen (myfile, "r");
if (file == 0)
{
ACE_ERROR ((LM_ERROR,
- "%C: Unable to open file : %p\n",
+ "%C: ERROR: Unable to open file : %p\n",
idl_global->prog_name (),
myfile));