aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-qcdiag-log.c
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2016-12-28 15:10:37 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-12-28 15:11:52 +0100
commitb236aa77a062de46a29566c8bb13aebd85cbf1ad (patch)
tree260fddf572b086228f8394152b5b089ff5a918f0 /src/osmo-qcdiag-log.c
parent1d53544f1cc42607e6d690fc07d594da3fc162f8 (diff)
Fix no-return-in-nonvoid-functions in osmo-qcdiag-log.c
[ 4s] E: osmo-qcdiag no-return-in-nonvoid-function osmo-qcdiag-log.c:170 [hfreyther: Changed exit to return EXIT_SUCCESS]
Diffstat (limited to 'src/osmo-qcdiag-log.c')
-rw-r--r--src/osmo-qcdiag-log.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osmo-qcdiag-log.c b/src/osmo-qcdiag-log.c
index 07101b0..c16fe06 100644
--- a/src/osmo-qcdiag-log.c
+++ b/src/osmo-qcdiag-log.c
@@ -167,4 +167,6 @@ int main(int argc, char **argv)
#endif
}
+
+ return EXIT_SUCCESS;
}