ipaccess.c: Make the compiler happy...

The compiler thinks the variables might not be initialized, we
know it is wrong... but just make it happy.
This commit is contained in:
Holger Hans Peter Freyther 2009-08-10 08:01:12 +02:00
parent 4e2973d2d3
commit 336f509941
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
{
struct tlv_parsed tlvp;
u_int8_t msg_type = *(msg->l2h);
u_int16_t site_id, bts_id, trx_id;
u_int16_t site_id = 0, bts_id = 0, trx_id = 0;
struct gsm_bts *bts;
int ret = 0;