diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-05 17:50:03 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-05 17:50:03 +0000 |
commit | 43ee50fbeaed8c5c07474c1665a47791b42663f4 (patch) | |
tree | bf64d8b5c0592b0276d5c1c5471df27e7c88607b /include/busybox.h | |
parent | 6c46934844ef3bfc149c82afa64884389ca783b6 (diff) | |
download | busybox-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 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h index fc5e8d874..2fc0cc7e0 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -167,7 +167,8 @@ struct suffix_mult { | |||
167 | int mult; | 167 | int mult; |
168 | }; | 168 | }; |
169 | 169 | ||
170 | extern unsigned long parse_number(const char *numstr, struct suffix_mult *suffixes); | 170 | extern unsigned long parse_number(const char *numstr, |
171 | const struct suffix_mult *suffixes); | ||
171 | 172 | ||
172 | 173 | ||
173 | /* These parse entries in /etc/passwd and /etc/group. This is desirable | 174 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |