Replace erroneous LFS_FILE_MAX upper bound 4294967296 to 4294967295

This commit is contained in:
Brian Pugh
2023-10-30 11:18:20 -07:00
parent 8f9427dd53
commit c531a5e88f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -13,8 +13,8 @@
#error "LFS_NAME_MAX must be in the range (0, 1022]"
#endif
#if (LFS_FILE_MAX <= 0) || (LFS_FILE_MAX > 4294967296)
#error "LFS_FILE_MAX must be in the range (0, 4294967296]"
#if (LFS_FILE_MAX <= 0) || (LFS_FILE_MAX > 4294967295)
#error "LFS_FILE_MAX must be in the range (0, 4294967295]"
#endif
#if (LFS_FILE_MAX > 2147483647)