]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
stat-util: rebreak comment
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 15 Feb 2024 10:16:16 +0000 (19:16 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 15 Feb 2024 18:48:18 +0000 (03:48 +0900)
src/basic/stat-util.c

index 3badac557b7363afa96c6de634a0f25bb8a1eb1f..b42af71ce10e0d9c7e076d403da1acfe9c3956d2 100644 (file)
@@ -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;