You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 15bfa13aa624e1f2a15571ad5278acec643c0489 Mon Sep 17 00:00:00 2001 |
|
From: Daniel Mack <daniel@zonque.org> |
|
Date: Tue, 24 Feb 2015 13:26:09 +0100 |
|
Subject: [PATCH] shared/time-util: fix gcc5 warning |
|
|
|
CC src/shared/libsystemd_shared_la-time-util.lo |
|
src/shared/time-util.c: In function 'parse_nsec': |
|
src/shared/time-util.c:789:25: warning: logical not is only applied to the left hand side of comparison [-Wlogical-not-parentheses] |
|
if (!*s != 0) |
|
^ |
|
|
|
(cherry picked from commit 8e8933ca0f06bae19cb6db601e83b33f8ac80f2a) |
|
--- |
|
src/shared/time-util.c | 2 +- |
|
1 file changed, 1 insertion(+), 1 deletion(-) |
|
|
|
diff --git a/src/shared/time-util.c b/src/shared/time-util.c |
|
index 947ac1fcfb..1c36c577c4 100644 |
|
--- a/src/shared/time-util.c |
|
+++ b/src/shared/time-util.c |
|
@@ -786,7 +786,7 @@ int parse_nsec(const char *t, nsec_t *nsec) { |
|
s = startswith(p, "infinity"); |
|
if (s) { |
|
s += strspn(s, WHITESPACE); |
|
- if (!*s != 0) |
|
+ if (*s != 0) |
|
return -EINVAL; |
|
|
|
*nsec = NSEC_INFINITY;
|
|
|