mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-03 15:38:22 +00:00
Fix bug with redbean help flag
This commit is contained in:
parent
3641e99042
commit
4178896aa0
1 changed files with 1 additions and 1 deletions
|
@ -2121,7 +2121,7 @@ static wontreturn void PrintUsage(FILE *f, int rc) {
|
|||
size_t n;
|
||||
const char *p;
|
||||
struct Asset *a;
|
||||
if ((a = GetAssetZip("/help.txt", 10)) && (p = LoadAsset(a, &n))) {
|
||||
if ((a = GetAssetZip("/help.txt", 9)) && (p = LoadAsset(a, &n))) {
|
||||
fwrite(p, 1, n, f);
|
||||
free(p);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue