diff options
author | Matthew Macy <[email protected]> | 2019-10-16 18:34:19 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-10-16 18:34:19 -0700 |
commit | 47d57dbccf5693b327342ec045b66bcf5a47e655 (patch) | |
tree | 77d42a2b9b09f272caa52eeb269dc2ad108fc495 /module/zfs/dsl_destroy.c | |
parent | 177c79dfbee633b70e7d373ff83c6a2d47625a17 (diff) |
Fix signature for private functions without header declarations
Clang will complain if a function has no prior declaration
Reviewed-by: Ryan Moeller <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Matt Macy <[email protected]>
Closes #9467
Diffstat (limited to 'module/zfs/dsl_destroy.c')
-rw-r--r-- | module/zfs/dsl_destroy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/dsl_destroy.c b/module/zfs/dsl_destroy.c index ee237a85b..37480c3f7 100644 --- a/module/zfs/dsl_destroy.c +++ b/module/zfs/dsl_destroy.c @@ -938,7 +938,7 @@ dsl_async_clone_destroy(dsl_dataset_t *ds, dmu_tx_t *tx) * Move the bptree into the pool's list of trees to clean up, update space * accounting information and destroy the zil. */ -void +static void dsl_async_dataset_destroy(dsl_dataset_t *ds, dmu_tx_t *tx) { uint64_t used, comp, uncomp; |