From: Yu Watanabe Date: Thu, 15 Feb 2024 10:16:16 +0000 (+0900) Subject: stat-util: rebreak comment X-Git-Tag: v256-rc1~835^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd7fa015a62385c63daf6152853bb444d63fd9ba;p=thirdparty%2Fsystemd.git stat-util: rebreak comment --- 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;