From: Eric Sandeen Date: Thu, 18 Apr 2019 18:19:39 +0000 (-0500) Subject: xfs_scrub: fix typo in unicrash header file X-Git-Tag: v5.0.0-rc1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7026a7862b9e0cb3031efd11171ac4ea198f6e03;p=thirdparty%2Fxfsprogs-dev.git 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 --- 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)