aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2001-01-18 16:11:22 +0000
committerMark Kettenis <kettenis@gnu.org>2001-01-18 16:11:22 +0000
commit28ae27b1a6b494ae3efd08a514c62d0d51bb9947 (patch)
tree01801a4703b16fcb5f1ad400046d2732796a3f16 /gdb/infcmd.c
parent6ab3a9c917070eb116fdd9d2d920b3f4f7631f0a (diff)
downloadfsf-binutils-gdb-28ae27b1a6b494ae3efd08a514c62d0d51bb9947.zip
fsf-binutils-gdb-28ae27b1a6b494ae3efd08a514c62d0d51bb9947.tar.gz
fsf-binutils-gdb-28ae27b1a6b494ae3efd08a514c62d0d51bb9947.tar.bz2
* infcmd.c (print_return_value): Restore another space lost by
switch to UIOUT. ``$NN='' should be ``$NN =''.
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 cd18676..d4a6fc0 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1049,7 +1049,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");