aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-01-12 09:45:57 +0000
committerAndrew Cagney <cagney@redhat.com>2001-01-12 09:45:57 +0000
commit9549d9c176b98ec8566c8cea02e281ae81efa078 (patch)
treed02193ae068c442c997595a9e088c0a175b41fb8 /gdb/infcmd.c
parent15f33b666dcf1fedc25c3a719561763f6ec12c13 (diff)
downloadfsf-binutils-gdb-9549d9c176b98ec8566c8cea02e281ae81efa078.zip
fsf-binutils-gdb-9549d9c176b98ec8566c8cea02e281ae81efa078.tar.gz
fsf-binutils-gdb-9549d9c176b98ec8566c8cea02e281ae81efa078.tar.bz2
Restore missing space lost when switching to UI_OUT.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r--gdb/infcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index fb788f8..cd18676 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1017,7 +1017,7 @@ print_return_value (int structure_return, struct type *value_type)
stb = ui_out_stream_new (uiout);
ui_out_text (uiout, "Value returned is ");
ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
- ui_out_text (uiout, "= ");
+ ui_out_text (uiout, " = ");
value_print (value, stb->stream, 0, Val_no_prettyprint);
ui_out_field_stream (uiout, "return-value", stb);
ui_out_text (uiout, "\n");