aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2009-05-27 13:34:14 +0000
committerNathan Sidwell <nathan@codesourcery.com>2009-05-27 13:34:14 +0000
commit3614867c425256c101bea9676b0d2cbc60c46f7a (patch)
tree46f346f65db462cd522c98b8bacbaa3fdef91e66 /binutils
parentc8a1f2548b56bc210c8bcb067e91de8132f56d67 (diff)
downloadfsf-binutils-gdb-3614867c425256c101bea9676b0d2cbc60c46f7a.zip
fsf-binutils-gdb-3614867c425256c101bea9676b0d2cbc60c46f7a.tar.gz
fsf-binutils-gdb-3614867c425256c101bea9676b0d2cbc60c46f7a.tar.bz2
* sysdump.c (tab): Use puts rather than two printfs.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/sysdump.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index fd9b88b..ed09c83 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -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.
diff --git a/binutils/sysdump.c b/binutils/sysdump.c
index 8387e71..460c691 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);
}
}