- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / init / init.c
index 02a33274a1c086a0f908fd06dfa8eefbea555fb0..8c32b7791b2e67a7671b1b40119e735e916d2c12 100644 (file)
@@ -880,8 +880,7 @@ static void reload_signal(int sig ATTRIBUTE_UNUSED)
        /* remove unused entrys */
        for (a = init_action_list; a; a = tmp) {
                tmp = a->next;
-               if (a->action & (ONCE | SYSINIT | WAIT ) &&
-                               a->pid == 0 ) {
+               if ((a->action & (ONCE | SYSINIT | WAIT)) && a->pid == 0) {
                        delete_init_action(a);
                }
        }