Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-20 04:10:07 +0300
committerEric Andersen <andersen@codepoet.org>2001-01-20 04:10:07 +0300
commit6f65a3a7e88a87bdd0f921884cd05ae593659dda (patch)
treeef5ae5dced5aaa9bffe7998fa49ec71bbd476eb1 /util-linux
parent1d269432b16b77e78544cf2b7aae04f0e4b8c06c (diff)
More printf cleanups
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)
perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
for( i = 0 ; i < numfilesystems ; i++) {
- fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
+ printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
mntentlist[i].mnt_dir, mntentlist[i].mnt_type,
mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
mntentlist[i].mnt_passno);