diff options
author | Matt Kraai <kraai@debian.org> | 2001-02-05 17:50:03 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-02-05 17:50:03 +0000 |
commit | a164c647acc613fe199a646dc5075c097f51a4a4 (patch) | |
tree | bf64d8b5c0592b0276d5c1c5471df27e7c88607b /dd.c | |
parent | 925edb828df9665714d2ce71a6ef8242bbf4eb15 (diff) | |
download | busybox-w32-a164c647acc613fe199a646dc5075c097f51a4a4.tar.gz busybox-w32-a164c647acc613fe199a646dc5075c097f51a4a4.tar.bz2 busybox-w32-a164c647acc613fe199a646dc5075c097f51a4a4.zip |
Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.
Diffstat (limited to 'dd.c')
-rw-r--r-- | dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ | |||
30 | #include <string.h> | 30 | #include <string.h> |
31 | #include <fcntl.h> | 31 | #include <fcntl.h> |
32 | 32 | ||
33 | static struct suffix_mult dd_suffixes[] = { | 33 | static const struct suffix_mult dd_suffixes[] = { |
34 | { "c", 1 }, | 34 | { "c", 1 }, |
35 | { "w", 2 }, | 35 | { "w", 2 }, |
36 | { "b", 512 }, | 36 | { "b", 512 }, |