summaryrefslogtreecommitdiff
path: root/plugins/irda/packet-ircomm.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-09-15 18:20:56 +0000
committerBill Meier <wmeier@newsguy.com>2009-09-15 18:20:56 +0000
commited8483ae985e50f2791f97df2765f0c182386983 (patch)
tree3098ab8477a14252eeec7321ce595461ebe57ba2 /plugins/irda/packet-ircomm.c
parent8c9d77f0cd0437a02ce80e890732a41d69e27ae2 (diff)
downloadwireshark-ed8483ae985e50f2791f97df2765f0c182386983.tar.gz
Save some memory: Don't statically allocate ett[] arrays used "dynamically".
svn path=/trunk/; revision=29934
Diffstat (limited to 'plugins/irda/packet-ircomm.c')
-rw-r--r--plugins/irda/packet-ircomm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/irda/packet-ircomm.c b/plugins/irda/packet-ircomm.c
index 7ed75bf829..50d82e723d 100644
--- a/plugins/irda/packet-ircomm.c
+++ b/plugins/irda/packet-ircomm.c
@@ -414,7 +414,7 @@ void proto_register_ircomm(void)
&ett_ircomm_ctrl
};
- static gint* ett_p[MAX_IAP_ENTRIES * MAX_PARAMETERS];
+ gint* ett_p[MAX_IAP_ENTRIES * MAX_PARAMETERS];
/* Register protocol names and descriptions */