chiark / gitweb /
shared: explicitly ignore the return value of wait_for_terminate
[elogind.git] / src / shared / pager.c
index 54790947ba7d82eb678e73b1d99fd888bbe6094b..001927ce93e093e26a210a9326826e16d9c57b02 100644 (file)
@@ -143,7 +143,7 @@ void pager_close(void) {
         /* Inform pager that we are done */
         fclose(stdout);
         kill(pager_pid, SIGCONT);
-        wait_for_terminate(pager_pid, NULL);
+        (void) wait_for_terminate(pager_pid, NULL);
         pager_pid = 0;
 }