From 3bf4f854c767282d47bdb28b22d1f3517b100f36 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 17 Oct 2022 17:19:31 +0200 Subject: [PATCH] init: return 0 at the end of main --- apps/src/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/src/init.c b/apps/src/init.c index 320af7af..01286179 100644 --- a/apps/src/init.c +++ b/apps/src/init.c @@ -168,5 +168,5 @@ int main() printf("Success!! Got PID %ld\n", child); - return 1; + return 0; }