more TDB
This commit is contained in:
parent
7e6e005db9
commit
e55d7662de
|
@ -43,7 +43,7 @@ static inline int tdbPutVarInt(u8 *p, int v) {
|
|||
int n = 0;
|
||||
|
||||
for (;;) {
|
||||
if (v < 0xff) {
|
||||
if (v <= 0x7f) {
|
||||
p[n++] = v;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue