summaryrefslogtreecommitdiff
path: root/src/shared/spawn-polkit-agent.c
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2014-11-09 15:51:04 +0100
committerLennart Poettering <lennart@poettering.net>2014-11-10 20:18:49 +0100
commitc73d180dc4bbd87c945a524b42b672af2ffe2609 (patch)
tree9f9233db81ff5819ad8205f77f138bfa685c3629 /src/shared/spawn-polkit-agent.c
parent39f76ad8d6df0f4c930cff7b080abfdff25c187b (diff)
shared: explicitly ignore the return value of wait_for_terminate
CID#1237532 CID#1237523 CID#1237522
Diffstat (limited to 'src/shared/spawn-polkit-agent.c')
-rw-r--r--src/shared/spawn-polkit-agent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/spawn-polkit-agent.c b/src/shared/spawn-polkit-agent.c
index 29b01db19a..7a90ef8013 100644
--- a/src/shared/spawn-polkit-agent.c
+++ b/src/shared/spawn-polkit-agent.c
@@ -82,7 +82,7 @@ void polkit_agent_close(void) {
/* Inform agent that we are done */
kill(agent_pid, SIGTERM);
kill(agent_pid, SIGCONT);
- wait_for_terminate(agent_pid, NULL);
+ (void) wait_for_terminate(agent_pid, NULL);
agent_pid = 0;
}