30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From 106922335ec502bcb4451c54a89be49f88fa54de Mon Sep 17 00:00:00 2001
|
|
From: Scott Murray <scott.murray@konsulko.com>
|
|
Date: Fri, 13 Sep 2019 19:26:27 -0400
|
|
Subject: [PATCH] Include sys/wait.h
|
|
|
|
Fixes:
|
|
src/login/logind-brightness.c:158:85: error: 'WEXITED' undeclared (first use in this function); did you mean 'WIFEXITED'?
|
|
158 | r = sd_event_add_child(w->manager->event, &w->child_event_source, w->child, WEXITED, on_brightness_writer_exit, w);
|
|
| ^~~~~~~
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
|
|
|
|
---
|
|
src/login/logind-brightness.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/login/logind-brightness.c b/src/login/logind-brightness.c
|
|
index 3f4b65e1fdf1..5af7e3d5ce3f 100644
|
|
--- a/src/login/logind-brightness.c
|
|
+++ b/src/login/logind-brightness.c
|
|
@@ -1,5 +1,6 @@
|
|
/* SPDX-License-Identifier: LGPL-2.1+ */
|
|
|
|
+#include <sys/wait.h>
|
|
#include "bus-util.h"
|
|
#include "device-util.h"
|
|
#include "hash-funcs.h"
|