mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-30 06:20:28 +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)));
|
||||
}
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/mem/gc.internal.h"
|
||||
#include "libc/mem/mem.h"
|
||||
#include "libc/nexgen32e/nexgen32e.h"
|
||||
#include "libc/mem/gc.internal.h"
|
||||
#include "libc/testlib/testlib.h"
|
||||
|
||||
void *_memset(void *, int, size_t) asm("memset");
|
||||
|
@ -68,7 +68,7 @@ TEST(memset, size5) {
|
|||
}
|
||||
|
||||
TEST(memset, wut) {
|
||||
char buf[128], *p, *q;
|
||||
char buf[128];
|
||||
_memset(buf, -1, sizeof(buf));
|
||||
EXPECT_EQ(255, buf[8] & 255);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue