lib: fix unmatched parentheses which confused source file editor

This commit is contained in:
Charlie Fenton 2012-10-18 03:52:31 -07:00 committed by Oliver Bock
parent d6accd5437
commit 6550c6927a
2 changed files with 4 additions and 1 deletions

View File

@ -6250,6 +6250,9 @@ David 17 Oct 2012
Charlie 18 Oct 2012
- MGR: Fix bug which can cause Manager to quit when started in Simple View.
- lib: fix unmatched parentheses which confused source file editor.
clientgui/
sg_TaskPanel.cpp
lib/
gui_rpc_client_ops.cpp

View File

@ -598,7 +598,7 @@ int RESULT::parse(XML_PARSER& xp) {
#if 0
if (xp.match_tag("stderr_out")) {
char buf[65536];
xp.element_contents(("</stderr_out>", buf);
xp.element_contents("</stderr_out>", buf);
stderr_out = buf;
continue;
}