Skip to content

Commit 7648784

Browse files
committed
Merge tag 'xfs-6.5-merge-6' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
Pull xfs fix from Darrick Wong: "Nothing exciting here, just getting rid of a gcc warning that I got tired of seeing when I turn on gcov" * tag 'xfs-6.5-merge-6' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux: xfs: fix uninit warning in xfs_growfs_data
2 parents 4770353 + ed04a91 commit 7648784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/xfs/xfs_fsops.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ xfs_growfs_data_private(
9393
xfs_agnumber_t nagimax = 0;
9494
xfs_rfsblock_t nb, nb_div, nb_mod;
9595
int64_t delta;
96-
bool lastag_extended;
96+
bool lastag_extended = false;
9797
xfs_agnumber_t oagcount;
9898
struct xfs_trans *tp;
9999
struct aghdr_init_data id = {};

0 commit comments

Comments
 (0)