diff options
author | Mike Yuan <me@yhndnzj.com> | 2024-04-08 13:38:29 +0200 |
---|---|---|
committer | Mike Yuan <me@yhndnzj.com> | 2024-04-08 14:14:38 +0200 |
commit | 7fe28d83860c7f8b50a8fcb3b2c50e3945f3cb41 (patch) | |
tree | d6a50b6229b4e966af6fbb3062e8608a5ae7475a /src/nsresourced | |
parent | uid-range: use FOREACH_ARRAY at one more place (diff) | |
download | systemd-7fe28d83860c7f8b50a8fcb3b2c50e3945f3cb41.tar.xz systemd-7fe28d83860c7f8b50a8fcb3b2c50e3945f3cb41.zip |
uid-range: place 'ret' param at last
Diffstat (limited to 'src/nsresourced')
-rw-r--r-- | src/nsresourced/nsresourcework.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsresourced/nsresourcework.c b/src/nsresourced/nsresourcework.c index 9e68249ea8..6bd2fed06f 100644 --- a/src/nsresourced/nsresourcework.c +++ b/src/nsresourced/nsresourcework.c @@ -453,7 +453,7 @@ static int allocate_now( assert_not_reached(); } - r = uid_range_load_userns(&valid_range, /* path= */ NULL, UID_RANGE_USERNS_INSIDE); + r = uid_range_load_userns(/* path= */ NULL, UID_RANGE_USERNS_INSIDE, &valid_range); if (r < 0) return r; |