diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 23:43:18 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-29 23:43:18 +0000 |
commit | 89ef65f02463b27313ff0eba806aa6e4aec10716 (patch) | |
tree | 70eab3e72843b1418ef3d88437c1f1a19169bda8 /miscutils/mt.c | |
parent | ab2aea44479fd6f519bccd651a37f30e792b7593 (diff) | |
download | busybox-w32-89ef65f02463b27313ff0eba806aa6e4aec10716.tar.gz busybox-w32-89ef65f02463b27313ff0eba806aa6e4aec10716.tar.bz2 busybox-w32-89ef65f02463b27313ff0eba806aa6e4aec10716.zip |
preparatory patch for -Wwrite-strings #5
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 9ecec82a1..a4b527f1b 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <sys/mtio.h> | 7 | #include <sys/mtio.h> |
8 | 8 | ||
9 | struct mt_opcodes { | 9 | struct mt_opcodes { |
10 | char *name; | 10 | const char *name; |
11 | short value; | 11 | short value; |
12 | }; | 12 | }; |
13 | 13 | ||