From aaefad11e326bf13f9a2e5364631a1875f40521d Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Sat, 24 May 2025 09:55:37 -0500 Subject: [PATCH] Fixed outdated LFS_type_* values This should match the internal LFSR_TAG_* values, but was probably missed during a refactor. --- lfs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs.h b/lfs.h index 87cec4b6..0aa407c0 100644 --- a/lfs.h +++ b/lfs.h @@ -122,8 +122,8 @@ enum lfs_type { LFS_TYPE_UNKNOWN = 7, // Unknown file type // internally used types, don't use these - LFS_type_ORPHAN = 4, // An orphaned stickynote - LFS_type_BOOKMARK = 5, // Directory bookmark + LFS_type_BOOKMARK = 4, // Directory bookmark + LFS_type_ORPHAN = 5, // An orphaned stickynote LFS_type_TRAVERSAL = 6, // An open traversal object };