From 98dec7387be8b72c2552ef3b86568bc02bc56197 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Tue, 9 Apr 2024 14:23:10 +0200 Subject: [PATCH] use a bool --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 92952d6..71ffc3f 100644 --- a/src/main.c +++ b/src/main.c @@ -113,7 +113,7 @@ int main( int argc, char** argv ) emulate_debug(); debug(); - } while ( 1 ); + } while ( true ); return 0; }