[PATCH] xfs:ERROR: "(foo*)" should be "(foo *)" changed "(foo*)" to "(foo *)"

From: liubin001
Date: Fri Jul 14 2023 - 03:09:17 EST


xfs:changed "(foo*)" to "(foo *)"

Signed-off-by: Liu Bin <liubin001@xxxxxxxxxx>
---
fs/xfs/xfs_buf_item_recover.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_buf_item_recover.c b/fs/xfs/xfs_buf_item_recover.c
index 43167f543afc..db3e45ffceaf 100644
--- a/fs/xfs/xfs_buf_item_recover.c
+++ b/fs/xfs/xfs_buf_item_recover.c
@@ -232,7 +232,7 @@ xlog_recover_validate_buf_type(
return;

magic32 = be32_to_cpu(*(__be32 *)bp->b_addr);
- magic16 = be16_to_cpu(*(__be16*)bp->b_addr);
+ magic16 = be16_to_cpu(*(__be16 *)bp->b_addr);
magicda = be16_to_cpu(info->magic);
switch (xfs_blft_from_flags(buf_f)) {
case XFS_BLFT_BTREE_BUF: