Code style fixes, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2016-11-28 01:22:57 +01:00
parent 038a977d47
commit 1d3a04a3a4
13 changed files with 32 additions and 28 deletions

View File

@@ -658,7 +658,7 @@ static int device_already_active(char *device)
return (G.instance_list != NULL);
for (inst = G.instance_list; inst; inst = inst->next) {
if (!inst->base_device || !strcmp(base, inst->base_device)) {
if (!inst->base_device || strcmp(base, inst->base_device) == 0) {
free(base);
return 1;
}