From 3d61030ccc6141f2a1c4dd234a76c951f496ee2d Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 20 Mar 2024 01:37:29 -0500 Subject: [PATCH] Mark the on-disk version as experimental Just in case... --- lfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs.h b/lfs.h index 661a2ddc..98429ba2 100644 --- a/lfs.h +++ b/lfs.h @@ -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))