From: Daniel Mack Date: Tue, 24 Feb 2015 15:18:43 +0000 (+0100) Subject: shared/unit-name: fix gcc5 warning X-Git-Tag: v219.0~594 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=f9bf3e260c480f7b660bec3f78a13f52a46ec34d;hp=95d383ee47db488f182048cfd6846f2e6b859f2b shared/unit-name: fix gcc5 warning Fix the following gcc5 warning: CC src/shared/libsystemd_shared_la-unit-name.lo src/shared/unit-name.c: In function 'unit_name_is_valid': src/shared/unit-name.c:102:34: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] if (!template_ok == TEMPLATE_VALID && at+1 == e) ^ --- diff --git a/src/shared/unit-name.c b/src/shared/unit-name.c index 0cc06f4f8..86d6ce3df 100644 --- a/src/shared/unit-name.c +++ b/src/shared/unit-name.c @@ -99,7 +99,7 @@ bool unit_name_is_valid(const char *n, enum template_valid template_ok) { if (at == n) return false; - if (!template_ok == TEMPLATE_VALID && at+1 == e) + if (template_ok != TEMPLATE_VALID && at+1 == e) return false; }