From 897f26c839f24a410c4a376c791417e43ab1f680 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 6 Mar 2024 14:33:24 -0800 Subject: [PATCH] Fix partial rename to check_meta_alloc As I was committing the initial check command I had only partially completed a rename of the function that checks the metadata allocators. Signed-off-by: Zach Brown --- utils/src/check/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/src/check/check.c b/utils/src/check/check.c index b74b5c52..df07f403 100644 --- a/utils/src/check/check.c +++ b/utils/src/check/check.c @@ -75,7 +75,7 @@ static int do_check(struct check_args *args) goto out; ret = check_supers() ?: - check_meta_refs(); + check_meta_alloc(); out: /* and tear it all down */ block_shutdown();