diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-22 22:43:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-22 22:43:22 +0000 |
commit | 32b2a9fd6a758602b149248bef8963466b05a088 (patch) | |
tree | 0bbff4371dd4ccf8920e8052ddbbbf2b098b9df6 /applets | |
parent | 68444b9f0c74e94d219fa40bb4109b4aa2fdd43b (diff) |
small code readability and typo fixes
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applet_tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c index 3353f3662..6c3492b4d 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c @@ -32,7 +32,7 @@ struct bb_applet { /* Define struct bb_applet applets[] */ #include "../include/applets.h" -enum { NUM_APPLETS = sizeof(applets)/sizeof(applets[0]) }; +enum { NUM_APPLETS = ARRAY_SIZE(applets) }; static int offset[NUM_APPLETS]; @@ -92,7 +92,7 @@ int main(int argc, char **argv) + (applets[i].noexec << 13) #endif #if ENABLE_FEATURE_SUID - + (applets[i].need_suid << 14) /* 2 bits */ + + (applets[i].need_suid << 14) /* 2 bits */ #endif ); } |