From: Anatoly Pugachev Date: Thu, 14 Apr 2022 07:39:54 +0000 (+0300) Subject: tests: test_buffer, return EXIT_SUCCESS at the end X-Git-Tag: v2.39-rc1~705 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=740b6c73874447b7b77d03c2b1f06c825a30a006;p=thirdparty%2Futil-linux.git tests: test_buffer, return EXIT_SUCCESS at the end Signed-off-by: Anatoly Pugachev --- diff --git a/lib/buffer.c b/lib/buffer.c index 1dba7dd510..4bab52c043 100644 --- a/lib/buffer.c +++ b/lib/buffer.c @@ -285,5 +285,7 @@ int main(void) printf("data [%zu] '%s'\n", sz, str); ul_buffer_free_data(&buf); + + return EXIT_SUCCESS; } #endif /* TEST_PROGRAM_BUFFER */