From 5fb2bdf25c185a6c54bb41a297ee345f20fffa04 Mon Sep 17 00:00:00 2001 From: Andrey Albershteyn Date: Fri, 5 Dec 2025 16:02:01 +0100 Subject: [PATCH] xfs: convert xfs_qoff_logformat_t typedef to struct Reviewed-by: Christoph Hellwig Signed-off-by: Andrey Albershteyn --- logprint/log_print_all.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/logprint/log_print_all.c b/logprint/log_print_all.c index 0920c487..1d6cee99 100644 --- a/logprint/log_print_all.c +++ b/logprint/log_print_all.c @@ -181,11 +181,11 @@ xlog_recover_print_buffer( STATIC void xlog_recover_print_quotaoff( - struct xlog_recover_item *item) + struct xlog_recover_item *item) { - xfs_qoff_logformat_t *qoff_f; + struct xfs_qoff_logformat *qoff_f; - qoff_f = (xfs_qoff_logformat_t *)item->ri_buf[0].iov_base; + qoff_f = (struct xfs_qoff_logformat *)item->ri_buf[0].iov_base; ASSERT(qoff_f); printf(_("\tQUOTAOFF: #regs:%d type:"), qoff_f->qf_size); -- 2.47.3