From 7026a7862b9e0cb3031efd11171ac4ea198f6e03 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 18 Apr 2019 13:19:39 -0500 Subject: [PATCH] xfs_scrub: fix typo in unicrash header file The no-op #definintion was missing 'fs_' so remained undefined in the #else case. Signed-off-by: Eric Sandeen Reviewed-by: Darrick J. Wong Reviewed-by: Bill O'Donnell Signed-off-by: Eric Sandeen --- scrub/unicrash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrub/unicrash.h b/scrub/unicrash.h index 85fcabc6f..fb8f5f724 100644 --- a/scrub/unicrash.h +++ b/scrub/unicrash.h @@ -28,7 +28,7 @@ bool unicrash_check_fs_label(struct unicrash *uc, const char *descr, #else # define unicrash_dir_init(u, c, b) (true) # define unicrash_xattr_init(u, c, b) (true) -# define unicrash_label_init(u, c) (true) +# define unicrash_fs_label_init(u, c) (true) # define unicrash_free(u) do {(u) = (u);} while (0) # define unicrash_check_dir_name(u, d, n) (true) # define unicrash_check_xattr_name(u, d, n) (true) -- 2.47.2