remove trailing spaces in print-utils.c ("int_string" function)
authorJoel Brobecker <brobecker@adacore.com>
Thu, 1 Nov 2018 22:08:57 +0000 (15:08 -0700)
committerJoel Brobecker <brobecker@adacore.com>
Thu, 1 Nov 2018 22:08:57 +0000 (15:08 -0700)
gdb/ChangeLog:

        * print-utils.c (int_string): Remove unnecessary trailing spaces.

gdb/ChangeLog
gdb/common/print-utils.c

index 9f220d9..d7cd56e 100644 (file)
@@ -1,5 +1,9 @@
 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
        shifting.
 
index 7eccec7..a0cb6e5 100644 (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.  */