remove trailing spaces in print-utils.c ("int_string" function)

gdb/ChangeLog:

        * print-utils.c (int_string): Remove unnecessary trailing spaces.
This commit is contained in:
Joel Brobecker 2018-11-01 15:08:57 -07:00
parent 87f7ab7b84
commit 8b578f9c76
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2018-11-01 Joel Brobecker <brobecker@adacore.com>
* print-utils.c (int_string): Remove unnecessary trailing spaces.
2018-11-01 Joel Brobecker <brobecker@adacore.com>
* rs6000-tdep.c (skip_prologue): Fix potential negative left

View File

@ -250,10 +250,10 @@ hex_string_custom: insufficient space to store result"));
/* See print-utils.h. */
char *
int_string (LONGEST val, int radix, int is_signed, int width,
int_string (LONGEST val, int radix, int is_signed, int width,
int use_c_format)
{
switch (radix)
switch (radix)
{
case 16:
{
@ -287,7 +287,7 @@ int_string (LONGEST val, int radix, int is_signed, int width,
internal_error (__FILE__, __LINE__,
_("failed internal consistency check"));
}
}
}
/* See print-utils.h. */