]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs: convert xfs_qoff_logformat_t typedef to struct
authorAndrey Albershteyn <aalbersh@redhat.com>
Fri, 5 Dec 2025 15:02:01 +0000 (16:02 +0100)
committerAndrey Albershteyn <aalbersh@kernel.org>
Mon, 8 Dec 2025 17:03:15 +0000 (18:03 +0100)
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrey Albershteyn <aalbersh@kernel.org>
logprint/log_print_all.c

index 0920c4871cb5dfd37d54b88bbb0531ab222e48c4..1d6cee99ba9d6845fe6e1834783324e07b30eb1d 100644 (file)
@@ -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);