apply_output_config: use list_seq_find() to find config

This commit is contained in:
Christoph Gysin 2015-11-29 15:24:11 +02:00
parent 7d82cd9c0a
commit ffdfaaa985

View file

@ -299,12 +299,10 @@ void apply_output_config(struct output_config *oc, swayc_t *output) {
if (!oc || !oc->background) { if (!oc || !oc->background) {
// Look for a * config for background // Look for a * config for background
int i; int i = list_seq_find(config->output_configs, output_name_cmp, "*");
for (i = 0; i < config->output_configs->length; ++i) { if (i >= 0) {
oc = config->output_configs->items[i]; oc = config->output_configs->items[i];
if (strcasecmp("*", oc->name) == 0) { } else {
break;
}
oc = NULL; oc = NULL;
} }
} }