aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd_preparse.l
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-01-09 18:34:43 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-01-09 18:34:43 +0000
commitd9465f6b1234f7d030e5882ff2448066bb0bf0d3 (patch)
treec3fcab04bad7cc5e1eae6b2b52a9df6b808b5f65 /epan/dtd_preparse.l
parente4e3c189f207dbee5bd29f05bbd201b7ec7bae17 (diff)
make internal variables static
svn path=/trunk/; revision=20352
Diffstat (limited to 'epan/dtd_preparse.l')
-rw-r--r--epan/dtd_preparse.l18
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dtd_preparse.l b/epan/dtd_preparse.l
index 86a9bd6b23..a84c5ecd4c 100644
--- a/epan/dtd_preparse.l
+++ b/epan/dtd_preparse.l
@@ -46,17 +46,17 @@
#define ECHO g_string_append(current,yytext);
-GString* current;
-GString* output;
-GHashTable* entities;
-gchar* entity_name;
-GString* error;
+static GString* current;
+static GString* output;
+static GHashTable* entities;
+static gchar* entity_name;
+static GString* error;
-const gchar* dtd_dirname;
-const gchar* filename;
-guint linenum;
+static const gchar* dtd_dirname;
+static const gchar* filename;
+static guint linenum;
-GString* textstr;
+static GString* textstr;
static gchar* replace_entity(gchar* s);
static const gchar* location(void);