diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-01-12 09:45:57 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-01-12 09:45:57 +0000 |
commit | 9549d9c176b98ec8566c8cea02e281ae81efa078 (patch) | |
tree | d02193ae068c442c997595a9e088c0a175b41fb8 /gdb/infcmd.c | |
parent | 15f33b666dcf1fedc25c3a719561763f6ec12c13 (diff) | |
download | ppe42-binutils-9549d9c176b98ec8566c8cea02e281ae81efa078.tar.gz ppe42-binutils-9549d9c176b98ec8566c8cea02e281ae81efa078.zip |
Restore missing space lost when switching to UI_OUT.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index fb788f86e0..cd18676a11 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"); |