diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 10:25:35 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 10:25:35 +0000 |
commit | f0b3fc041f40e2185a14c3b5ff778444c2b98c81 (patch) | |
tree | 99c5ad443f69860833c8ef37e142fddfedb90872 /miscutils/mt.c | |
parent | ab99e773ad9c0ea664fd869a1af5ce28d624f295 (diff) | |
download | busybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.tar.gz busybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.tar.bz2 busybox-w32-f0b3fc041f40e2185a14c3b5ff778444c2b98c81.zip |
mostly style fixes
git-svn-id: svn://busybox.net/trunk/busybox@16487 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils/mt.c')
-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: |