diff options
author | Luis Ontanon <luis.ontanon@gmail.com> | 2005-10-25 18:38:47 +0000 |
---|---|---|
committer | Luis Ontanon <luis.ontanon@gmail.com> | 2005-10-25 18:38:47 +0000 |
commit | 8c28eb9648e3217e203b10b0f23a3e084f3363f7 (patch) | |
tree | fea6e5590eba1bc54f4acee73f5ada0aa4e792e6 /asn1/ranap | |
parent | 7ca1457f357069f1e939258f2de425298ae32a21 (diff) | |
download | wireshark-8c28eb9648e3217e203b10b0f23a3e084f3363f7.tar.gz wireshark-8c28eb9648e3217e203b10b0f23a3e084f3363f7.tar.bz2 wireshark-8c28eb9648e3217e203b10b0f23a3e084f3363f7.zip |
Avoid a conflict in global symbols by declaring some variables static.
svn path=/trunk/; revision=16310
Diffstat (limited to 'asn1/ranap')
-rw-r--r-- | asn1/ranap/packet-ranap-template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/asn1/ranap/packet-ranap-template.c b/asn1/ranap/packet-ranap-template.c index e32fb3593f..b52b12963f 100644 --- a/asn1/ranap/packet-ranap-template.c +++ b/asn1/ranap/packet-ranap-template.c @@ -70,10 +70,10 @@ static int ett_ranap; /* Global variables */ -proto_tree *top_tree; -guint type_of_message; -guint32 ProcedureCode; -guint32 ProtocolIE_ID; +static proto_tree *top_tree; +static guint type_of_message; +static guint32 ProcedureCode; +static guint32 ProtocolIE_ID; static int dissect_ranap_ies(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree); static int dissect_ranap_FirstValue_ies(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree); |