* sysdump.c (tab): Use puts rather than two printfs.

This commit is contained in:
Nathan Sidwell 2009-05-27 13:34:14 +00:00
parent c8a1f2548b
commit 3614867c42
2 changed files with 5 additions and 2 deletions

View 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.

View File

@ -529,8 +529,7 @@ tab (int i, char *s)
if (s)
{
p ();
printf (s);
printf ("\n");
puts (s);
}
}