aboutsummaryrefslogtreecommitdiff
path: root/miscutils/hdparm.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-01 12:05:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-01 12:05:12 +0000
commitfeb7ae7f01e13dce31118e5a58b09b237d25e58c (patch)
treeb36f1a78441f586aa8bf5a2c8b055296d30c2777 /miscutils/hdparm.c
parent0c97c9d43707da745fe2bc62ab2a69497ceaf666 (diff)
downloadbusybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.gz
busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.bz2
busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.zip
printf("%s\n") -> puts()
Diffstat (limited to 'miscutils/hdparm.c')
-rw-r--r--miscutils/hdparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c
index cb6db78cd..365e24cba 100644
--- a/miscutils/hdparm.c
+++ b/miscutils/hdparm.c
@@ -849,7 +849,7 @@ static void identify(uint16_t *val)
849 jj >>= 1; 849 jj >>= 1;
850 } 850 }
851 } 851 }
852 printf("%s\n", kk ? "" : "\n\tLikely used CD-ROM ATAPI-1"); 852 puts(kk ? "" : "\n\tLikely used CD-ROM ATAPI-1");
853 /* the cdrom stuff is more like ATA-2 than anything else, so: */ 853 /* the cdrom stuff is more like ATA-2 than anything else, so: */
854 like_std = 2; 854 like_std = 2;
855 } 855 }