Minor cleanups for 6.5:
* Fix an uninitialized variable warning. Signed-off-by: Darrick J. Wong <djwong@kernel.org> -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQQ2qTKExjcn+O1o2YRKO3ySh0YRpgUCZKjUjwAKCRBKO3ySh0YR pn92AQC4gY9GOyKcc/aiAd/t1u8gGxnFtcN06xh4TdVArMM4/AD/UtEKx9LYuaSF pyhw5SfzxI555HfXkA8ci/D+BxguVQs= =/vX1 -----END PGP SIGNATURE----- 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
This commit is contained in:
commit
76487845fd
|
@ -93,7 +93,7 @@ xfs_growfs_data_private(
|
|||
xfs_agnumber_t nagimax = 0;
|
||||
xfs_rfsblock_t nb, nb_div, nb_mod;
|
||||
int64_t delta;
|
||||
bool lastag_extended;
|
||||
bool lastag_extended = false;
|
||||
xfs_agnumber_t oagcount;
|
||||
struct xfs_trans *tp;
|
||||
struct aghdr_init_data id = {};
|
||||
|
|
Loading…
Reference in New Issue