From: Andrey Albershteyn Date: Fri, 5 Dec 2025 15:02:37 +0000 (+0100) Subject: xfs: convert xfs_efi_log_format_64_t typedef to struct X-Git-Tag: v6.18.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aab512e0fd587687dc82ee2439fdde96c4cbdf11;p=thirdparty%2Fxfsprogs-dev.git xfs: convert xfs_efi_log_format_64_t typedef to struct Reviewed-by: Christoph Hellwig Signed-off-by: Andrey Albershteyn --- diff --git a/logprint/log_redo.c b/logprint/log_redo.c index cdd6e8b7..38caf5a2 100644 --- a/logprint/log_redo.c +++ b/logprint/log_redo.c @@ -43,7 +43,8 @@ xfs_efi_copy_format( } return 0; } else if (len == len64) { - xfs_efi_log_format_64_t *src_efi_fmt_64 = (xfs_efi_log_format_64_t *)buf; + struct xfs_efi_log_format_64 *src_efi_fmt_64 = + (struct xfs_efi_log_format_64 *)buf; dst_efi_fmt->efi_type = src_efi_fmt_64->efi_type; dst_efi_fmt->efi_size = src_efi_fmt_64->efi_size;