mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-08-05 09:20:29 +00:00
Fix #920 (sleb64 is certainly broken)
This commit is contained in:
parent
42891e82bb
commit
5101fd27ca
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ char *sleb64(char *p, int64_t x) {
|
|||
*p++ = c;
|
||||
return p;
|
||||
} else {
|
||||
*p++ = c | 64;
|
||||
*p++ = c | 128;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue