aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-06-21 19:45:01 +0200
committerHarald Welte <laforge@gnumonks.org>2016-06-23 19:58:47 +0000
commit4fa641d7b22116c7b1af0bf80ebe6ab78a06cee9 (patch)
treef4e179adfd47ee6ebaeba194b3416726e8797c05 /src
parent64e3813b060d626ae9f767238ca018e0f697adf0 (diff)
fix compiler warning: remove unused variable 'i' in calib_verify()
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-litecell15/calib_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-litecell15/calib_file.c b/src/osmo-bts-litecell15/calib_file.c
index a9e86293..ac39e464 100644
--- a/src/osmo-bts-litecell15/calib_file.c
+++ b/src/osmo-bts-litecell15/calib_file.c
@@ -307,7 +307,7 @@ int calib_load(struct lc15l1_hdl *fl1h)
static int calib_verify(struct lc15l1_hdl *fl1h, const struct calib_file_desc *desc)
{
- int i, rc, sz;
+ int rc, sz;
struct calib_send_state *st = &fl1h->st;
struct phy_link *plink = fl1h->phy_inst->phy_link;
char *rbuf;