diff options
-rw-r--r-- | applets/busybox.c | 2 | ||||
-rw-r--r-- | busybox.c | 2 | ||||
-rw-r--r-- | internal.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 218343b4b..a355cdd1d 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -354,7 +354,7 @@ const struct BB_applet applets[] = { | |||
354 | {0} | 354 | {0} |
355 | }; | 355 | }; |
356 | 356 | ||
357 | const char *applet_name; | 357 | char *applet_name; |
358 | 358 | ||
359 | #ifdef BB_FEATURE_INSTALLER | 359 | #ifdef BB_FEATURE_INSTALLER |
360 | /* | 360 | /* |
@@ -354,7 +354,7 @@ const struct BB_applet applets[] = { | |||
354 | {0} | 354 | {0} |
355 | }; | 355 | }; |
356 | 356 | ||
357 | const char *applet_name; | 357 | char *applet_name; |
358 | 358 | ||
359 | #ifdef BB_FEATURE_INSTALLER | 359 | #ifdef BB_FEATURE_INSTALLER |
360 | /* | 360 | /* |
diff --git a/internal.h b/internal.h index 53c36c605..44c2e81ac 100644 --- a/internal.h +++ b/internal.h | |||
@@ -208,7 +208,7 @@ extern int which_main(int argc, char** argv); | |||
208 | extern int whoami_main(int argc, char** argv); | 208 | extern int whoami_main(int argc, char** argv); |
209 | extern int yes_main(int argc, char** argv); | 209 | extern int yes_main(int argc, char** argv); |
210 | 210 | ||
211 | extern const char *applet_name; | 211 | extern char *applet_name; |
212 | 212 | ||
213 | extern void usage(const char *usage) __attribute__ ((noreturn)); | 213 | extern void usage(const char *usage) __attribute__ ((noreturn)); |
214 | extern void errorMsg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 214 | extern void errorMsg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |