Fix sleb64 (#1179)

Fixes #920
This commit is contained in:
Jōshin 2024-05-20 00:33:17 -07:00 committed by GitHub
parent 42891e82bb
commit 47183551d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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