From 00da6dcb88ade39cbe1fe2e2bc274c9030b35df1 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Sun, 18 Oct 2020 21:35:57 +0700 Subject: [PATCH] power_test: fix incorrect line termination in init_test() Change-Id: Ic36a4e70df52b64e4d5177d5b2bcf060e0f6458f Related: SYS#4916 --- tests/power/power_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/power/power_test.c b/tests/power/power_test.c index eff722ae5..bf474ac93 100644 --- a/tests/power/power_test.c +++ b/tests/power/power_test.c @@ -46,8 +46,8 @@ static void init_test(const char *name) g_trx->ms_pwr_ctl_soft = true; - g_bts->ul_power_target = -75, - g_bts->band = GSM_BAND_1800, + g_bts->ul_power_target = -75; + g_bts->band = GSM_BAND_1800; g_bts->c0 = g_trx; printf("\nStarting test case '%s'\n", name);