aboutsummaryrefslogtreecommitdiff
path: root/dd.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-05 17:50:03 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-05 17:50:03 +0000
commit43ee50fbeaed8c5c07474c1665a47791b42663f4 (patch)
treebf64d8b5c0592b0276d5c1c5471df27e7c88607b /dd.c
parent6c46934844ef3bfc149c82afa64884389ca783b6 (diff)
downloadbusybox-w32-43ee50fbeaed8c5c07474c1665a47791b42663f4.tar.gz
busybox-w32-43ee50fbeaed8c5c07474c1665a47791b42663f4.tar.bz2
busybox-w32-43ee50fbeaed8c5c07474c1665a47791b42663f4.zip
Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.
git-svn-id: svn://busybox.net/trunk/busybox@1751 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'dd.c')
-rw-r--r--dd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dd.c b/dd.c
index 582310681..75bbfbac2 100644
--- a/dd.c
+++ b/dd.c
@@ -30,7 +30,7 @@
30#include <string.h> 30#include <string.h>
31#include <fcntl.h> 31#include <fcntl.h>
32 32
33static struct suffix_mult dd_suffixes[] = { 33static const struct suffix_mult dd_suffixes[] = {
34 { "c", 1 }, 34 { "c", 1 },
35 { "w", 2 }, 35 { "w", 2 },
36 { "b", 512 }, 36 { "b", 512 },