Fix warnings according to -Wall

This commit is contained in:
Gabriel Tofvesson 2020-03-13 02:45:35 +01:00
parent a70d1b661a
commit 33fe37b5c5

6
main.c
View File

@ -118,7 +118,7 @@ load_board_file (const char *path)
/* Map 89 bytes of file to memory */ /* Map 89 bytes of file to memory */
void *region = mmap (NULL, 89, PROT_READ, MAP_SHARED, fd, 0); void *region = mmap (NULL, 89, PROT_READ, MAP_SHARED, fd, 0);
if (region == -1) if (region == (void*)-1)
{ {
close (fd); close (fd);
return file; return file;
@ -329,11 +329,11 @@ simplify (
if (verbosity > 0) if (verbosity > 0)
{ {
if ((*counter) & (0xFFFF >> (4 * (4 - verbosity))) == 0) if (((*counter) & (0xFFFF >> (4 * (4 - verbosity)))) == 0)
{ {
print_board_verbose (board, 0, 0); print_board_verbose (board, 0, 0);
ansi_set_cursor (0, 35); ansi_set_cursor (0, 35);
printf ("Iteration: %lu", *counter); printf ("Iteration: %llu", *counter);
} }
*counter += 1; *counter += 1;
} }