diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-20 01:10:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-20 01:10:07 +0000 |
commit | 6f65a3a7e88a87bdd0f921884cd05ae593659dda (patch) | |
tree | ef5ae5dced5aaa9bffe7998fa49ec71bbd476eb1 /util-linux | |
parent | 1d269432b16b77e78544cf2b7aae04f0e4b8c06c (diff) |
More printf cleanups
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 2 |
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); |