aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/measurement.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/measurement.c b/src/common/measurement.c
index 8d1babd3..33b1c115 100644
--- a/src/common/measurement.c
+++ b/src/common/measurement.c
@@ -706,10 +706,10 @@ int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn)
* l1sap.c every time a measurement indication is received. It collects the
* measurement samples and automatically detects the end of the measurement
* interval. */
-void lchan_meas_process_measurement(struct gsm_lchan *lchan, struct bts_ul_meas *ulm, uint32_t fn)
+int lchan_meas_process_measurement(struct gsm_lchan *lchan, struct bts_ul_meas *ulm, uint32_t fn)
{
lchan_new_ul_meas(lchan, ulm, fn);
- lchan_meas_check_compute(lchan, fn);
+ return lchan_meas_check_compute(lchan, fn);
}
/* Reset all measurement related struct members to their initial values. This