提交 54d41127 编写于 作者: H Hongze Cheng

fix: tdb large page

上级 1ea2eec5
......@@ -55,8 +55,8 @@ typedef u32 SPgno;
#define TDB_PUT_U24(p, v) \
do { \
int tv = (v); \
(p)[2] = tv & 0xff; \
(p)[1] = (tv >> 8) & 0xff; \
(p)[1] = tv & 0xff; \
(p)[2] = (tv >> 8) & 0xff; \
(p)[0] = (tv >> 16) & 0xff; \
} while (0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册