diff options
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/applets.h b/include/applets.h index a2d73bc..f21a490 100644 --- a/include/applets.h +++ b/include/applets.h @@ -371,5 +371,5 @@ const struct BB_applet applets[] = { }; /* The -1 arises because of the {0,NULL,0,NULL} entry above. */ -#define NUM_APPLETS (sizeof (applets) / sizeof (struct BB_applet) - 1) +size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1); |