diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 10:25:35 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 10:25:35 +0000 |
commit | 92258541449581302e180d05e827e27d35030a18 (patch) | |
tree | 99c5ad443f69860833c8ef37e142fddfedb90872 /miscutils | |
parent | 048c93cc5593d53d6243c3e15dc8a5b0072a6083 (diff) | |
download | busybox-w32-92258541449581302e180d05e827e27d35030a18.tar.gz busybox-w32-92258541449581302e180d05e827e27d35030a18.tar.bz2 busybox-w32-92258541449581302e180d05e827e27d35030a18.zip |
mostly style fixes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index f4a0e994c..9ecec82a1 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -107,7 +107,7 @@ int mt_main(int argc, char **argv) | |||
107 | case MTTELL: | 107 | case MTTELL: |
108 | if (ioctl(fd, MTIOCPOS, &position) < 0) | 108 | if (ioctl(fd, MTIOCPOS, &position) < 0) |
109 | bb_perror_msg_and_die("%s", file); | 109 | bb_perror_msg_and_die("%s", file); |
110 | printf ("At block %d.\n", (int) position.mt_blkno); | 110 | printf("At block %d.\n", (int) position.mt_blkno); |
111 | break; | 111 | break; |
112 | 112 | ||
113 | default: | 113 | default: |