diff options
author | наб <[email protected]> | 2022-04-19 20:49:30 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-06-29 14:08:59 -0700 |
commit | dd66857d92d86643bda57b92fdd58f016bd1725e (patch) | |
tree | 9048c7e8ea0821c264cbaab4ee5a29379393ddbf /cmd/ztest.c | |
parent | a926aab902ac5c680f4766568d19674b80fb58bb (diff) |
Remaining {=> const} char|void *tag
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #13348
Diffstat (limited to 'cmd/ztest.c')
-rw-r--r-- | cmd/ztest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/ztest.c b/cmd/ztest.c index ff425973a..b7093ce95 100644 --- a/cmd/ztest.c +++ b/cmd/ztest.c @@ -1537,7 +1537,7 @@ ztest_spa_prop_set_uint64(zpool_prop_t prop, uint64_t value) static int ztest_dmu_objset_own(const char *name, dmu_objset_type_t type, - boolean_t readonly, boolean_t decrypt, void *tag, objset_t **osp) + boolean_t readonly, boolean_t decrypt, const void *tag, objset_t **osp) { int err; char *cp = NULL; @@ -2810,7 +2810,7 @@ ztest_io(ztest_ds_t *zd, uint64_t object, uint64_t offset) * Initialize an object description template. */ static void -ztest_od_init(ztest_od_t *od, uint64_t id, char *tag, uint64_t index, +ztest_od_init(ztest_od_t *od, uint64_t id, const char *tag, uint64_t index, dmu_object_type_t type, uint64_t blocksize, uint64_t dnodesize, uint64_t gen) { |