Fixed outdated LFS_type_* values

This should match the internal LFSR_TAG_* values, but was probably
missed during a refactor.
This commit is contained in:
Christopher Haster
2025-05-24 09:55:37 -05:00
parent 33b169427a
commit aaefad11e3
+2 -2
View File
@@ -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
};