aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_bsslap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-09-15 17:37:54 +0000
committerBill Meier <wmeier@newsguy.com>2009-09-15 17:37:54 +0000
commit6c545e0d798571d82230c9a652f7fea2d0f23365 (patch)
tree83eba9280f86acfc8cdaf8b62ea258b15673ed5e /epan/dissectors/packet-gsm_bsslap.c
parent9467ccee2c25d445a6d9a596ce3b77db65e63ffe (diff)
Save some memory: Don't statically allocate ett[] arrays used "dynamically".
svn path=/trunk/; revision=29929
Diffstat (limited to 'epan/dissectors/packet-gsm_bsslap.c')
-rw-r--r--epan/dissectors/packet-gsm_bsslap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gsm_bsslap.c b/epan/dissectors/packet-gsm_bsslap.c
index 2b1083ef11..aa3179a2f1 100644
--- a/epan/dissectors/packet-gsm_bsslap.c
+++ b/epan/dissectors/packet-gsm_bsslap.c
@@ -932,8 +932,8 @@ proto_register_gsm_bsslap(void)
/* Setup protocol subtree array */
#define NUM_INDIVIDUAL_ELEMS 2
- static gint *ett[NUM_INDIVIDUAL_ELEMS + NUM_GSM_BSSLAP_MSG +
- NUM_GSM_BSSLAP_ELEM];
+ gint *ett[NUM_INDIVIDUAL_ELEMS + NUM_GSM_BSSLAP_MSG +
+ NUM_GSM_BSSLAP_ELEM];
ett[0] = &ett_gsm_bsslap;
ett[1] = &ett_bsslap_cell_list;