From dd7fa015a62385c63daf6152853bb444d63fd9ba Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 15 Feb 2024 19:16:16 +0900 Subject: [PATCH] stat-util: rebreak comment --- src/basic/stat-util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic/stat-util.c b/src/basic/stat-util.c index 3badac557b7..b42af71ce10 100644 --- a/src/basic/stat-util.c +++ b/src/basic/stat-util.c @@ -263,8 +263,8 @@ int path_is_network_fs(const char *path) { int stat_verify_regular(const struct stat *st) { assert(st); - /* Checks whether the specified stat() structure refers to a regular file. If not returns an appropriate error - * code. */ + /* Checks whether the specified stat() structure refers to a regular file. If not returns an + * appropriate error code. */ if (S_ISDIR(st->st_mode)) return -EISDIR; -- 2.47.3