aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-20 01:10:07 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-20 01:10:07 +0000
commitd1fe93b2ef6225ce56f64a72b20eebe497d58045 (patch)
treeef5ae5dced5aaa9bffe7998fa49ec71bbd476eb1 /util-linux
parentd9609839bd02e67d66acc2e21bfeb35d5784939e (diff)
downloadbusybox-w32-d1fe93b2ef6225ce56f64a72b20eebe497d58045.tar.gz
busybox-w32-d1fe93b2ef6225ce56f64a72b20eebe497d58045.tar.bz2
busybox-w32-d1fe93b2ef6225ce56f64a72b20eebe497d58045.zip
More printf cleanups
git-svn-id: svn://busybox.net/trunk/busybox@1622 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 97b60abbd..88e45fc72 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -353,7 +353,7 @@ extern int mount_main(int argc, char **argv)
353 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS"); 353 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
354 354
355 for( i = 0 ; i < numfilesystems ; i++) { 355 for( i = 0 ; i < numfilesystems ; i++) {
356 fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname, 356 printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
357 mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 357 mntentlist[i].mnt_dir, mntentlist[i].mnt_type,
358 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 358 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
359 mntentlist[i].mnt_passno); 359 mntentlist[i].mnt_passno);