From: Nathan Sidwell Date: Wed, 27 May 2009 13:34:14 +0000 (+0000) Subject: * sysdump.c (tab): Use puts rather than two printfs. X-Git-Tag: sid-snapshot-20090601~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3614867c425256c101bea9676b0d2cbc60c46f7a;p=thirdparty%2Fbinutils-gdb.git * sysdump.c (tab): Use puts rather than two printfs. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index fd9b88baaf4..ed09c83fd34 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2009-05-27 Nathan Sidwell + + * sysdump.c (tab): Use puts rather than two printfs. + 2009-05-26 Nick Clifton * po/id.po: Updated Indonesian translation. diff --git a/binutils/sysdump.c b/binutils/sysdump.c index 8387e711f83..460c6915402 100644 --- a/binutils/sysdump.c +++ b/binutils/sysdump.c @@ -529,8 +529,7 @@ tab (int i, char *s) if (s) { p (); - printf (s); - printf ("\n"); + puts (s); } }