aboutsummaryrefslogtreecommitdiffstats
path: root/src/gbproxy/gb_proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gbproxy/gb_proxy.c')
-rw-r--r--src/gbproxy/gb_proxy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gbproxy/gb_proxy.c b/src/gbproxy/gb_proxy.c
index 7e9d9c330..d86c6ae9b 100644
--- a/src/gbproxy/gb_proxy.c
+++ b/src/gbproxy/gb_proxy.c
@@ -282,6 +282,7 @@ static struct gbproxy_bvc *gbproxy_select_sgsn_bvc(struct gbproxy_config *cfg, s
{
struct gbproxy_sgsn *sgsn;
struct gbproxy_bvc *sgsn_bvc = NULL;
+ int i;
sgsn = gbproxy_select_sgsn(cfg, tlli);
if (!sgsn) {
@@ -290,7 +291,7 @@ static struct gbproxy_bvc *gbproxy_select_sgsn_bvc(struct gbproxy_config *cfg, s
}
/* Get the BVC for this SGSN/NSE */
- for (int i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
+ for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
sgsn_bvc = cell->sgsn_bvc[i];
if (!sgsn_bvc)
continue;