]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mount-util: wrap long line
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 5 Sep 2024 04:54:31 +0000 (13:54 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 6 Sep 2024 04:09:36 +0000 (13:09 +0900)
src/shared/mount-util.c

index 3992afe8c7defc8162343c4e04437e5bb99e4a35..d98df3809dcced1c9b983b1958477a82485bcd02 100644 (file)
@@ -1445,7 +1445,14 @@ int remount_idmap_fd(
         return 0;
 }
 
-int remount_idmap(char **p, uid_t uid_shift, uid_t uid_range, uid_t source_owner, uid_t dest_owner,RemountIdmapping idmapping) {
+int remount_idmap(
+                char **p,
+                uid_t uid_shift,
+                uid_t uid_range,
+                uid_t source_owner,
+                uid_t dest_owner,
+                RemountIdmapping idmapping) {
+
         _cleanup_close_ int userns_fd = -EBADF;
 
         userns_fd = make_userns(uid_shift, uid_range, source_owner, dest_owner, idmapping);
@@ -1500,6 +1507,7 @@ static int get_sub_mounts(
                 const char *prefix,
                 SubMount **ret_mounts,
                 size_t *ret_n_mounts) {
+
         _cleanup_(mnt_free_tablep) struct libmnt_table *table = NULL;
         _cleanup_(mnt_free_iterp) struct libmnt_iter *iter = NULL;
         SubMount *mounts = NULL;