mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-12 14:09:12 +00:00
Fix warnings
This change fixes Cosmopolitan so it has fewer opinions about compiler warnings. The whole repository had to be cleaned up to be buildable in -Werror -Wall mode. This lets us benefit from things like strict const checking. Some actual bugs might have been caught too.
This commit is contained in:
parent
e2b3c3618e
commit
0d748ad58e
571 changed files with 1306 additions and 1888 deletions
|
@ -82,7 +82,6 @@ TEST(gclongjmp, test) {
|
|||
}
|
||||
|
||||
void crawl(const char *path) {
|
||||
const char *dir;
|
||||
if (!strcmp(path, "/") || !strcmp(path, ".")) return;
|
||||
crawl(_gc(xdirname(path)));
|
||||
}
|
||||
|
@ -100,7 +99,6 @@ TEST(gc, torture) {
|
|||
}
|
||||
|
||||
void crawl2(jmp_buf jb, const char *path) {
|
||||
const char *dir;
|
||||
if (!strcmp(path, "/") || !strcmp(path, ".")) _gclongjmp(jb, 1);
|
||||
crawl2(jb, _gc(xdirname(path)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue