* infcmd.c (print_return_value): Restore another space lost by
switch to UIOUT. ``$NN='' should be ``$NN =''.
This commit is contained in:
parent
6ab3a9c917
commit
28ae27b1a6
2 changed files with 6 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue