Unverified Commit 80ff677b authored by Ethan Ferguson's avatar Ethan Ferguson Committed by Konstantin Komarov
Browse files

ntfs3: transition magic number to shared constant



Use the common FSLABEL_MAX constant instead of a hardcoded magic
constant of 256.

Signed-off-by: default avatarEthan Ferguson <ethan.ferguson@zetier.com>
Signed-off-by: default avatarKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
parent 8f5ae30d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ struct ntfs_sb_info {
		__le16 flags; // Cached current VOLUME_INFO::flags, VOLUME_FLAG_DIRTY.
		u8 major_ver;
		u8 minor_ver;
		char label[256];
		char label[FSLABEL_MAX];
		bool real_dirty; // Real fs state.
	} volume;