From 33fe37b5c5192d9ced79284486b5a620fa035a1b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 13 Mar 2020 02:45:35 +0100 Subject: [PATCH] Fix warnings according to -Wall --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index c5543e9..60545bf 100644 --- a/main.c +++ b/main.c @@ -118,7 +118,7 @@ load_board_file (const char *path) /* Map 89 bytes of file to memory */ void *region = mmap (NULL, 89, PROT_READ, MAP_SHARED, fd, 0); - if (region == -1) + if (region == (void*)-1) { close (fd); return file; @@ -329,11 +329,11 @@ simplify ( if (verbosity > 0) { - if ((*counter) & (0xFFFF >> (4 * (4 - verbosity))) == 0) + if (((*counter) & (0xFFFF >> (4 * (4 - verbosity)))) == 0) { print_board_verbose (board, 0, 0); ansi_set_cursor (0, 35); - printf ("Iteration: %lu", *counter); + printf ("Iteration: %llu", *counter); } *counter += 1; }