* sysdump.c (tab): Use puts rather than two printfs.
authorNathan Sidwell <nathan@codesourcery.com>
Wed, 27 May 2009 13:34:14 +0000 (13:34 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Wed, 27 May 2009 13:34:14 +0000 (13:34 +0000)
binutils/ChangeLog
binutils/sysdump.c

index fd9b88baaf41d60050b00ba396d4cd730d37b6c1..ed09c83fd34f658a24c6e561a45f2808c43a1826 100644 (file)
@@ -1,3 +1,7 @@
+2009-05-27  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * sysdump.c (tab): Use puts rather than two printfs.
+
 2009-05-26  Nick Clifton  <nickc@redhat.com>
 
        * po/id.po: Updated Indonesian translation.
index 8387e711f836d7fe2236896d496e7578d12ab260..460c6915402c6f50a8eabcae33f75ea9f924b7a8 100644 (file)
@@ -529,8 +529,7 @@ tab (int i, char *s)
   if (s)
     {
       p ();
-      printf (s);
-      printf ("\n");
+      puts (s);
     }
 }