]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
execute: fix return type from write()
authorLennart Poettering <lennart@poettering.net>
Fri, 11 Sep 2015 16:15:08 +0000 (18:15 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 11 Sep 2015 16:31:49 +0000 (18:31 +0200)
src/core/execute.c

index 8773d9cdfbc4f65bca466c1143c41b7d7cecf2d0..3c308e3e3e69ee50b516636bbf57f251aa03e1b2 100644 (file)
@@ -1169,9 +1169,11 @@ static void do_idle_pipe_dance(int idle_pipe[4]) {
                 r = fd_wait_for_event(idle_pipe[0], POLLHUP, IDLE_TIMEOUT_USEC);
 
                 if (idle_pipe[3] >= 0 && r == 0 /* timeout */) {
+                        ssize_t n;
+
                         /* Signal systemd that we are bored and want to continue. */
-                        r = write(idle_pipe[3], "x", 1);
-                        if (r > 0)
+                        n = write(idle_pipe[3], "x", 1);
+                        if (n > 0)
                                 /* Wait for systemd to react to the signal above. */
                                 fd_wait_for_event(idle_pipe[0], POLLHUP, IDLE_TIMEOUT2_USEC);
                 }