From 56a32c029432b7c471cbb789fe0bba75f4d6db3b Mon Sep 17 00:00:00 2001 From: Arkaprabha Chakraborty Date: Sat, 3 Jun 2023 04:38:27 +0530 Subject: [PATCH] Change 'QUIT' flag boolean state literal from '1' to 'true' --- maze.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maze.c b/maze.c index 802d3d2..d485135 100644 --- a/maze.c +++ b/maze.c @@ -207,7 +207,7 @@ void *capture() { } } - QUIT = 1; + QUIT = true; return EXIT_SUCCESS; }