summaryrefslogtreecommitdiffstats
path: root/patches/systemd-20/0002-limited-datatype.patch
blob: 5ec8bc06d17fdec6bcbead33898dd21b50b35598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
src/manager.c:144: warning: comparison is always false due to limited range of data type [-Wtype-limits]

---
 src/manager.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: systemd-13/src/manager.c
===================================================================
--- systemd-13.orig/src/manager.c
+++ systemd-13/src/manager.c
@@ -126,7 +126,7 @@ static int manager_setup_notify(Manager
 }
 
 static int enable_special_signals(Manager *m) {
-        char fd;
+        int fd;
 
         assert(m);