diff options
Diffstat (limited to 'epan/expert.c')
-rw-r--r-- | epan/expert.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/expert.c b/epan/expert.c index cc737ec897..c549e86f39 100644 --- a/epan/expert.c +++ b/epan/expert.c @@ -34,9 +34,12 @@ #include "tap.h" +/* proto_expert cannot be static because it's referenced in the + * print routines + */ +int proto_expert = -1; static int expert_tap = -1; -static int proto_expert = -1; static int highest_severity = 0; static int ett_expert = -1; |