X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Ffsckd%2Ffsckd.c;h=ae56fe60fd314ff0b6e134feb3469383569a8ad2;hb=3963cea3b0d86e32a32937bee54a3eed713563fd;hp=4a61d80a18e3980d41ce30c8bb058e5d615fc41e;hpb=d2268a20a0bf99c5d26bee9048aa48b377c72949;p=elogind.git diff --git a/src/fsckd/fsckd.c b/src/fsckd/fsckd.c index 4a61d80a1..ae56fe60f 100644 --- a/src/fsckd/fsckd.c +++ b/src/fsckd/fsckd.c @@ -160,7 +160,7 @@ static int plymouth_feedback_handler(sd_event_source *s, int fd, uint32_t revent static int send_message_plymouth_socket(int plymouth_fd, const char *message, bool update) { _cleanup_free_ char *packet = NULL; - int r, n; + int n; char mode = 'M'; if (update) @@ -168,10 +168,9 @@ static int send_message_plymouth_socket(int plymouth_fd, const char *message, bo if (asprintf(&packet, "%c\002%c%s%n", mode, (int) (strlen(message) + 1), message, &n) < 0) return log_oom(); - r = loop_write(plymouth_fd, packet, n + 1, true); - return r; -} + return loop_write(plymouth_fd, packet, n + 1, true); +} static int send_message_plymouth(Manager *m, const char *message) { int r;