aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-08 18:08:25 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-08 18:08:25 +0000
commit15f33eecbf2228e5df8172277b54a791ddd46662 (patch)
tree73143a248a7ebccd568ee1dafdf62d9030ac6a3c /epan/dtd_parse.l
parentd6d9e7afdcf4d3856c4fc81721a13e398cfed6da (diff)
Disable warnings-as-errors for Flex-generated output. Add a couple of gsize
casts. svn path=/trunk/; revision=28002
Diffstat (limited to 'epan/dtd_parse.l')
-rw-r--r--epan/dtd_parse.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dtd_parse.l b/epan/dtd_parse.l
index 0a80447927..4d84b12590 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -326,7 +326,7 @@ extern dtd_build_data_t* dtd_parse(GString* s) {
input_string = s;
offset = 0;
- len = input_string->len;
+ len = (guint) input_string->len;
pParser = DtdParseAlloc(g_malloc);