aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-14 06:29:10 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-14 06:29:10 +0000
commitd6912c97deb344844163914eb4aa4640cc332580 (patch)
treeb7cf5ade92713c1930737079e74bc4e612c3de6c
parent58361a44b5105e2ed5cae5eb69faa975a993bf72 (diff)
downloadbusybox-w32-d6912c97deb344844163914eb4aa4640cc332580.tar.gz
busybox-w32-d6912c97deb344844163914eb4aa4640cc332580.tar.bz2
busybox-w32-d6912c97deb344844163914eb4aa4640cc332580.zip
Be more pedantic aboutthe terminating null applet.
-Erik
-rw-r--r--applets/busybox.c2
-rw-r--r--busybox.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 15f8e3f24..041cdeb01 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -351,7 +351,7 @@ const struct BB_applet applets[] = {
351#ifdef BB_TEST 351#ifdef BB_TEST
352 {"[", test_main, _BB_DIR_USR_BIN}, 352 {"[", test_main, _BB_DIR_USR_BIN},
353#endif 353#endif
354 {0} 354 {0,NULL,0}
355}; 355};
356 356
357char *applet_name; 357char *applet_name;
diff --git a/busybox.c b/busybox.c
index 15f8e3f24..041cdeb01 100644
--- a/busybox.c
+++ b/busybox.c
@@ -351,7 +351,7 @@ const struct BB_applet applets[] = {
351#ifdef BB_TEST 351#ifdef BB_TEST
352 {"[", test_main, _BB_DIR_USR_BIN}, 352 {"[", test_main, _BB_DIR_USR_BIN},
353#endif 353#endif
354 {0} 354 {0,NULL,0}
355}; 355};
356 356
357char *applet_name; 357char *applet_name;