소스 검색

mem: fix TLSF max pool limit

Camille Oudot 10 년 전
부모
커밋
fe379acb5f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mem/tlsf.c

+ 1 - 1
mem/tlsf.c

@@ -47,7 +47,7 @@ enum tlsf_private
 	** TODO: We can increase this to support larger sizes, at the expense
 	** of more overhead in the TLSF structure.
 	*/
-	FL_INDEX_MAX = 40,
+	FL_INDEX_MAX = 39,
 #else
 	FL_INDEX_MAX = 30,
 #endif