]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
process-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 18 Jan 2025 19:24:05 +0000 (04:24 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 18 Jan 2025 19:24:08 +0000 (04:24 +0900)
Also rebreak comment.

Follow-up for 03b89cf213d5d1a60601ff158a6366718461fa4b.

src/basic/process-util.c

index 21e296864a941a1fa5b6dddf20a07a477211f5ff..a6ea346f78622f0414cc5d54ac279231c0a49f22 100644 (file)
@@ -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) {