From 4316cb2f25a583ed759d6823ce9a1b7650e178a9 Mon Sep 17 00:00:00 2001 From: Martin Hauke Date: Thu, 5 Nov 2015 21:02:47 +0100 Subject: Fix no-return-in-nonvoid-function meas_vis.c RPM post-build-checks found some issue and marks these as error: [ 38s] I: Program returns random data in a function [ 38s] E: openbsc no-return-in-nonvoid-function meas_vis.c:118 --- openbsc/src/utils/meas_vis.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'openbsc') diff --git a/openbsc/src/utils/meas_vis.c b/openbsc/src/utils/meas_vis.c index 092d6adf1..4f7e632c3 100644 --- a/openbsc/src/utils/meas_vis.c +++ b/openbsc/src/utils/meas_vis.c @@ -115,6 +115,8 @@ static int handle_msg(struct msgb *msg) default: break; } + + return 0; } static int udp_fd_cb(struct osmo_fd *ofd, unsigned int what) -- cgit v1.2.3