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
This commit is contained in:
Martin Hauke 2015-11-05 21:02:47 +01:00 committed by Harald Welte
parent 292769e19e
commit 4316cb2f25
1 changed files with 2 additions and 0 deletions

View File

@ -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)