From 1fed88555aa0eeb32e96a8fd8558abbb0d645e48 Mon Sep 17 00:00:00 2001 From: savalet Date: Wed, 12 Feb 2025 17:30:03 +0100 Subject: [PATCH] Now return the shell return --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 96b84b1..277de29 100644 --- a/src/main.c +++ b/src/main.c @@ -12,5 +12,5 @@ int main(int ac __attribute__((unused)), char **av __attribute__((unused)), char **env) { U_DEBUG_MSG("Debug mode activated."); - shell(env); + return shell(env); }