Fix #920 (sleb64 is certainly broken)

This commit is contained in:
Jōshin 2024-05-18 15:56:46 -07:00
parent 42891e82bb
commit 5101fd27ca
No known key found for this signature in database

View file

@ -45,7 +45,7 @@ char *sleb64(char *p, int64_t x) {
*p++ = c;
return p;
} else {
*p++ = c | 64;
*p++ = c | 128;
}
}
}