This rewrite of a nested conditional produces the same results, but
eliminate a goto and corresponding label.
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
/* ensure root chain commands appear before all others since
we will need them to create the child chains */
if (root_a) {
- if (root_b)
- goto normal;
- return -1; /* a before b */
- }
- if (root_b)
+ if (!root_b)
+ return -1; /* a before b */
+ } else if (root_b) {
return 1; /* b before a */
- normal:
+ }
+
/* priorities are limited to range [-1000, 1000] */
return insta->priority - instb->priority;
}