From 47d57dbccf5693b327342ec045b66bcf5a47e655 Mon Sep 17 00:00:00 2001 From: Matthew Macy Date: Wed, 16 Oct 2019 18:34:19 -0700 Subject: [PATCH] Fix signature for private functions without header declarations Clang will complain if a function has no prior declaration Reviewed-by: Ryan Moeller Reviewed-by: Brian Behlendorf Signed-off-by: Matt Macy Closes #9467 --- module/zfs/btree.c | 2 +- module/zfs/dsl_destroy.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/zfs/btree.c b/module/zfs/btree.c index f099eb67c7..9f69d4b1ae 100644 --- a/module/zfs/btree.c +++ b/module/zfs/btree.c @@ -59,7 +59,7 @@ int zfs_btree_verify_intensity = 0; * A convenience function to silence warnings from memmove's return value and * change argument order to src, dest. */ -void +static void bmov(const void *src, void *dest, size_t size) { (void) memmove(dest, src, size); diff --git a/module/zfs/dsl_destroy.c b/module/zfs/dsl_destroy.c index ee237a85b8..37480c3f7e 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;