diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-11-12 02:50:51 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-11-12 02:50:51 +0000 |
commit | 5fb278d476fde6d9636df2646779de7177d4d2b9 (patch) | |
tree | 5af2865209b5e640563e9057e923778782993a4a /examples | |
parent | df82c5041ac10c91536226e0a6a13f3b944d9ee8 (diff) | |
download | ATCD-5fb278d476fde6d9636df2646779de7177d4d2b9.tar.gz |
Yet another coding style update.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Configuration/config_test.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/Configuration/config_test.cpp b/examples/Configuration/config_test.cpp index 30d91fecb56..8e60735a3c5 100644 --- a/examples/Configuration/config_test.cpp +++ b/examples/Configuration/config_test.cpp @@ -321,8 +321,9 @@ main (int, char *[]) int result = test_io (&io_config); if (result) { - ACE_DEBUG ((LM_ERROR, "IO Test Failed (%d)\n", result)); - return -3; + ACE_ERROR_RETURN ((LM_ERROR, + "IO Test Failed (%d)\n", result), + -3); } ACE_DEBUG ((LM_DEBUG, "Test passed\n")); |