From f7aec792f7826a40c598bb887f953a0f96e4d54d Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 27 Sep 2018 04:43:12 +0700 Subject: utils/osmo-config-merge: explicitly return from main() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change fixes the following compiler warning: osmo-config-merge.c: In function ‘main’: osmo-config-merge.c:268:1: warning: control reaches end of non-void function [-Wreturn-type] Despite it isn't critical, let's get rid of this warning. Change-Id: I7a80a85c8b3180dc086cd9fd20356aab16ea8100 --- utils/osmo-config-merge.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/osmo-config-merge.c b/utils/osmo-config-merge.c index 3762c679..c76e42d5 100644 --- a/utils/osmo-config-merge.c +++ b/utils/osmo-config-merge.c @@ -265,4 +265,6 @@ int main(int argc, char **argv) /* make AddressSanitizer / LeakSanitizer happy by recursively freeing the trees */ talloc_free(patch_tree); talloc_free(base_tree); + + return 0; } -- cgit v1.2.3