diff options
author | Steve Huston <shuston@riverace.com> | 1997-06-27 15:10:52 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1997-06-27 15:10:52 +0000 |
commit | 1e290d61bc8d5f2ba135d72959c52d48c33b7892 (patch) | |
tree | 70c9e28e12c3f263859fc37ff37e54cd958f6703 /ace | |
parent | 6d2d8110d3d0b31a6191eb4832ea57ba2e7e80fd (diff) | |
download | ATCD-1e290d61bc8d5f2ba135d72959c52d48c33b7892.tar.gz |
Removed extraneous \n from ACE_ERROR in ACE_Location_Node::open_handle().
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Parse_Node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp index 8e4eeedba91..5bcaf84a826 100644 --- a/ace/Parse_Node.cpp +++ b/ace/Parse_Node.cpp @@ -373,7 +373,7 @@ ACE_Location_Node::open_handle (void) { ace_yyerrno++; - ACE_ERROR ((LM_ERROR, "dlopen failed for %s\n", dl_pathname)); + ACE_ERROR ((LM_ERROR, "dlopen failed for %s", dl_pathname)); char *errmsg = ACE_OS::dlerror (); |