diff options
author | 2018-11-01 15:08:57 -0700 | |
---|---|---|
committer | 2018-11-01 15:08:57 -0700 | |
commit | 8b578f9c7626f57f5adb9e4a52f5b0d6c8f6e0a0 (patch) | |
tree | 9903889f0de0ae6e9aa667b17449cb3438d6f5c4 /gdb/common | |
parent | gdb.texinfo: Fix the output of the "info tasks 2" example (diff) | |
download | binutils-gdb-8b578f9c7626f57f5adb9e4a52f5b0d6c8f6e0a0.tar.gz binutils-gdb-8b578f9c7626f57f5adb9e4a52f5b0d6c8f6e0a0.tar.bz2 binutils-gdb-8b578f9c7626f57f5adb9e4a52f5b0d6c8f6e0a0.zip |
remove trailing spaces in print-utils.c ("int_string" function)
gdb/ChangeLog:
* print-utils.c (int_string): Remove unnecessary trailing spaces.
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/print-utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/common/print-utils.c b/gdb/common/print-utils.c index 7eccec7949b..a0cb6e5b0f1 100644 --- a/gdb/common/print-utils.c +++ b/gdb/common/print-utils.c @@ -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. */ |