diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-11-26 10:33:55 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-11-26 10:33:55 +0000 |
commit | 61ff4b39738085d1b88d934f619b840fd296c8a8 (patch) | |
tree | 3f0e8887aeecd290f7c32ae413ee6e720733c94b /include | |
parent | 4eb2fd6826aa197dcdbf3618fa0cae9d2de73d86 (diff) | |
download | busybox-61ff4b39738085d1b88d934f619b840fd296c8a8.tar.gz |
more use const for interface of libbb/compare_string_array, example usage for e2fsprogs/fsck
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index b7dd48775..70a9336d8 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -466,7 +466,7 @@ typedef struct { } procps_status_t; extern procps_status_t * procps_scan(int save_user_arg0); -extern unsigned short compare_string_array(const char *string_array[], const char *key); +extern unsigned short compare_string_array(const char * const string_array[], const char *key); extern int my_query_module(const char *name, int which, void **buf, size_t *bufsize, size_t *ret); |