aboutsummaryrefslogtreecommitdiff
path: root/mount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-20 01:10:07 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-20 01:10:07 +0000
commit6f65a3a7e88a87bdd0f921884cd05ae593659dda (patch)
treeef5ae5dced5aaa9bffe7998fa49ec71bbd476eb1 /mount.c
parent1d269432b16b77e78544cf2b7aae04f0e4b8c06c (diff)
downloadbusybox-6f65a3a7e88a87bdd0f921884cd05ae593659dda.tar.gz
More printf cleanups
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mount.c b/mount.c
index 97b60abbd..88e45fc72 100644
--- a/mount.c
+++ b/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);