Mark the on-disk version as experimental

Just in case...
This commit is contained in:
Christopher Haster
2024-03-20 01:37:29 -05:00
parent 9cf115685b
commit 3d61030ccc
+1 -1
View File
@@ -28,7 +28,7 @@ extern "C"
// Version of On-disk data structures
// Major (top-nibble), incremented on backwards incompatible changes
// Minor (bottom-nibble), incremented on feature additions
#define LFS_DISK_VERSION 0x00020000
#define LFS_DISK_VERSION 0x00000000
#define LFS_DISK_VERSION_MAJOR (0xffff & (LFS_DISK_VERSION >> 16))
#define LFS_DISK_VERSION_MINOR (0xffff & (LFS_DISK_VERSION >> 0))