Compare commits

...

2 commits

Author SHA1 Message Date
1b683f3395 Update Changelog.md
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 21s
2024-11-12 17:18:21 +09:00
33be6c49fd Fix erronous buffer declaration 2024-11-12 17:16:58 +09:00
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,8 @@
## Upcoming Changes
Fix internal erronous buffer declaration.
## Version 1.2
Add the `--generate-dir=<DIR>` option, which will generate all html into the

View file

@ -458,7 +458,7 @@ int c_simple_http_static_copy_over_dir(const char *from,
return 1;
}
char *buf[1024];
char buf[1024];
size_t fread_ret;
unsigned long fwrite_ret;
while (!feof(from_file_fd)