diff --git a/libc/fmt/sleb64.c b/libc/fmt/sleb64.c index fffae7e92..50dbe83c9 100644 --- a/libc/fmt/sleb64.c +++ b/libc/fmt/sleb64.c @@ -45,7 +45,7 @@ char *sleb64(char *p, int64_t x) { *p++ = c; return p; } else { - *p++ = c | 64; + *p++ = c | 128; } } }