1
0
mirror of https://github.com/systemd/systemd.git synced 2025-05-27 21:05:55 +03:00

stat-util: rebreak comment

This commit is contained in:
Yu Watanabe 2024-02-15 19:16:16 +09:00
parent f0455cec53
commit dd7fa015a6

View 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;