Change 'QUIT' flag boolean state literal from '1' to 'true'

This commit is contained in:
Arkaprabha Chakraborty
2023-06-03 04:38:27 +05:30
parent 1857d224b9
commit 56a32c0294

2
maze.c
View File

@@ -207,7 +207,7 @@ void *capture() {
}
}
QUIT = 1;
QUIT = true;
return EXIT_SUCCESS;
}