aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cimd.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-cimd.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-cimd.c')
-rw-r--r--epan/dissectors/packet-cimd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cimd.c b/epan/dissectors/packet-cimd.c
index 65b4e85a36..9400e82cc2 100644
--- a/epan/dissectors/packet-cimd.c
+++ b/epan/dissectors/packet-cimd.c
@@ -841,7 +841,7 @@ proto_register_cimd(void)
};
/* Setup protocol subtree array */
- static gint *ett[MAXPARAMSCOUNT + 1];
+ gint *ett[MAXPARAMSCOUNT + 1];
int i;
ett[0] = &ett_cimd;