diff options
author | Eric Andersen | 2001-01-20 01:10:07 +0000 |
---|---|---|
committer | Eric Andersen | 2001-01-20 01:10:07 +0000 |
commit | 6f65a3a7e88a87bdd0f921884cd05ae593659dda (patch) | |
tree | ef5ae5dced5aaa9bffe7998fa49ec71bbd476eb1 /mount.c | |
parent | 1d269432b16b77e78544cf2b7aae04f0e4b8c06c (diff) | |
download | busybox-6f65a3a7e88a87bdd0f921884cd05ae593659dda.zip busybox-6f65a3a7e88a87bdd0f921884cd05ae593659dda.tar.gz |
More printf cleanups
Diffstat (limited to 'mount.c')
-rw-r--r-- | mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |