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)
                                  ^
This commit is contained in:
Daniel Mack 2015-02-24 16:18:43 +01:00
parent 95d383ee47
commit f9bf3e260c

View file

@ -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;
}