mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* top.c (command_loop): Fix output for shrinkage.
This commit is contained in:
parent
44742d57fb
commit
57ee890f2f
@ -1,3 +1,7 @@
|
||||
2007-10-22 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* top.c (command_loop): Fix output for shrinkage.
|
||||
|
||||
2007-10-22 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* cp-name-parser.y (exp1): Add & ( var ) as a reference expression.
|
||||
|
@ -545,9 +545,9 @@ command_loop (void)
|
||||
long space_now = lim - lim_at_start;
|
||||
long space_diff = space_now - space_at_cmd_start;
|
||||
|
||||
printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
|
||||
printf_unfiltered (_("Space used: %ld (%s%ld for this command)\n"),
|
||||
space_now,
|
||||
(space_diff >= 0 ? '+' : '-'),
|
||||
(space_diff >= 0 ? "+" : ""),
|
||||
space_diff);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user