diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-20 11:17:48 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-20 11:17:48 +0000 |
commit | 1f0262bcdb352e9a75a4e5f48cd63d05714e2859 (patch) | |
tree | e191e1f4019e7b0daf47f9077e375588f77b3c6a /modutils/insmod.c | |
parent | 0fa9deda1706b19e5f42ed392483a582880aaca3 (diff) | |
download | busybox-w32-1f0262bcdb352e9a75a4e5f48cd63d05714e2859.tar.gz busybox-w32-1f0262bcdb352e9a75a4e5f48cd63d05714e2859.tar.bz2 busybox-w32-1f0262bcdb352e9a75a4e5f48cd63d05714e2859.zip |
another more const
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index d1504d0ab..da149fe2b 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -3394,7 +3394,7 @@ static int obj_gpl_license(struct obj_file *f, const char **license) | |||
3394 | * linux/include/linux/module.h. Checking for leading "GPL" will not | 3394 | * linux/include/linux/module.h. Checking for leading "GPL" will not |
3395 | * work, somebody will use "GPL sucks, this is proprietary". | 3395 | * work, somebody will use "GPL sucks, this is proprietary". |
3396 | */ | 3396 | */ |
3397 | static const char *gpl_licenses[] = { | 3397 | static const char * const gpl_licenses[] = { |
3398 | "GPL", | 3398 | "GPL", |
3399 | "GPL v2", | 3399 | "GPL v2", |
3400 | "GPL and additional rights", | 3400 | "GPL and additional rights", |