diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-10-23 22:23:07 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-10-23 22:23:13 +0200 |
commit | 3c9783c7f4b16c1eb702dfed1fc4f980efcb8f56 (patch) | |
tree | 1ecb7ad0a812fe74e501712e66f19d6a65646bbf /src/partition | |
parent | basic/iovec-util: drop IOVEC_NULL (diff) | |
download | systemd-3c9783c7f4b16c1eb702dfed1fc4f980efcb8f56.tar.xz systemd-3c9783c7f4b16c1eb702dfed1fc4f980efcb8f56.zip |
basic/iovec-util: drop TAKE_IOVEC
As suggested in
https://github.com/systemd/systemd/pull/29679#discussion_r1368678932.
Diffstat (limited to 'src/partition')
-rw-r--r-- | src/partition/repart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/partition/repart.c b/src/partition/repart.c index e6725ed352..9109ea1823 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -4087,7 +4087,7 @@ static int partition_format_verity_hash( p->new_uuid_is_set = true; } - p->roothash = TAKE_IOVEC(rh); + p->roothash = TAKE_STRUCT(rh); return 0; #else |