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