From: Yu Watanabe Date: Sat, 18 Jan 2025 19:24:05 +0000 (+0900) Subject: process-util: fix typo X-Git-Tag: v258-rc1~1565 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0159e2b5bdee0249f6f90c019ff6c5c641f572b;p=thirdparty%2Fsystemd.git process-util: fix typo Also rebreak comment. Follow-up for 03b89cf213d5d1a60601ff158a6366718461fa4b. --- diff --git a/src/basic/process-util.c b/src/basic/process-util.c index 21e296864a9..a6ea346f786 100644 --- a/src/basic/process-util.c +++ b/src/basic/process-util.c @@ -2290,9 +2290,8 @@ int read_errno(int errno_fd) { assert(errno_fd >= 0); - /* The issue here is that it's impossible to distinguish between - * an error code returned by child and IO error arrised when reading it. - * So, the function logs errors and return EIO for the later case. */ + /* The issue here is that it's impossible to distinguish between an error code returned by child and + * IO error arose when reading it. So, the function logs errors and return EIO for the later case. */ ssize_t n = loop_read(errno_fd, &r, sizeof(r), /* do_poll = */ false); if (n < 0) {