diff options
author | Ron Yorston <rmy@pobox.com> | 2021-01-14 13:28:49 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-01-14 13:28:49 +0000 |
commit | 89963b524d211e1aec12b72b3725be05ee95c8cf (patch) | |
tree | 48590aef62b7ee7686b7898256f29def8d9c50b9 /miscutils/mt.c | |
parent | 9aa5a829070392c2ac6494d0c4e674c0c2bc7dab (diff) | |
parent | 2b7c1aa92c68524559a2067609d09309d5c09adc (diff) | |
download | busybox-w32-89963b524d211e1aec12b72b3725be05ee95c8cf.tar.gz busybox-w32-89963b524d211e1aec12b72b3725be05ee95c8cf.tar.bz2 busybox-w32-89963b524d211e1aec12b72b3725be05ee95c8cf.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r-- | miscutils/mt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index 9f1aecfca..1a4214664 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -15,7 +15,7 @@ | |||
15 | //kbuild:lib-$(CONFIG_MT) += mt.o | 15 | //kbuild:lib-$(CONFIG_MT) += mt.o |
16 | 16 | ||
17 | //usage:#define mt_trivial_usage | 17 | //usage:#define mt_trivial_usage |
18 | //usage: "[-f device] opcode value" | 18 | //usage: "[-f DEVICE] OPCODE VALUE" |
19 | //usage:#define mt_full_usage "\n\n" | 19 | //usage:#define mt_full_usage "\n\n" |
20 | //usage: "Control magnetic tape drive operation\n" | 20 | //usage: "Control magnetic tape drive operation\n" |
21 | //usage: "\n" | 21 | //usage: "\n" |
@@ -30,7 +30,7 @@ | |||
30 | #include <sys/mtio.h> | 30 | #include <sys/mtio.h> |
31 | 31 | ||
32 | /* missing: eod/seod, stoptions, stwrthreshold, densities */ | 32 | /* missing: eod/seod, stoptions, stwrthreshold, densities */ |
33 | static const short opcode_value[] = { | 33 | static const short opcode_value[] ALIGN2 = { |
34 | MTBSF, | 34 | MTBSF, |
35 | MTBSFM, | 35 | MTBSFM, |
36 | MTBSR, | 36 | MTBSR, |