From 80ada33c66045b1e9cff70864000b35e4c3c93ec Mon Sep 17 00:00:00 2001 From: NRK Date: Sat, 25 Dec 2021 08:09:54 +0600 Subject: [PATCH] fix tcc warning --- commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.c b/commands.c index 423637b..a751c94 100644 --- a/commands.c +++ b/commands.c @@ -63,6 +63,7 @@ bool cg_quit(arg_t status) } } exit(status); + return None; /* silence tcc warning */ } bool cg_switch_mode(arg_t _)