diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2018-09-27 04:43:12 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2018-09-27 04:43:47 +0700 |
commit | f7aec792f7826a40c598bb887f953a0f96e4d54d (patch) | |
tree | 221f6061f87713cf67eec53b63dc126440e8329f | |
parent | 6afb3f50317e694e7482bbd774243dc130e3f936 (diff) |
utils/osmo-config-merge: explicitly return from main()
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
-rw-r--r-- | utils/osmo-config-merge.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |