From 7372c572d8a9985dd2a1c4b8c2882eef9ac09645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Barbi=C4=87?= Date: Thu, 18 Jun 2020 20:38:33 +0200 Subject: [PATCH] Change return code to 0 --- lxc/tests/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxc/tests/test.cpp b/lxc/tests/test.cpp index 785dfb4..2bad760 100644 --- a/lxc/tests/test.cpp +++ b/lxc/tests/test.cpp @@ -2,5 +2,5 @@ int main(void) { printf("good\n"); - return 1; + return 0; }