summaryrefslogtreecommitdiff
path: root/epan/dtd_parse.l
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-12-14 19:23:34 +0000
committerGerald Combs <gerald@wireshark.org>2013-12-14 19:23:34 +0000
commit02eea9378e364fc2bd69b79e9220f389e21c45ec (patch)
tree0f7a6c60010cb6e1866de9ab20a16ccd7df2ff2e /epan/dtd_parse.l
parent478f83dd2a78d9fff8fbdd171e7b011aa0605127 (diff)
downloadwireshark-02eea9378e364fc2bd69b79e9220f389e21c45ec.tar.gz
More shorten-64-to-32 warnings.
svn path=/trunk/; revision=54106
Diffstat (limited to 'epan/dtd_parse.l')
-rw-r--r--epan/dtd_parse.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dtd_parse.l b/epan/dtd_parse.l
index ef0b313ff1..b46d1cbab4 100644
--- a/epan/dtd_parse.l
+++ b/epan/dtd_parse.l
@@ -70,7 +70,7 @@
static gchar* location;
static gchar* attr_name;
- static int my_yyinput(char* buff,guint size);
+ static size_t my_yyinput(char* buff,size_t size);
static dtd_token_data_t* new_token(gchar*);
@@ -310,7 +310,7 @@ static dtd_token_data_t* new_token(gchar* text) {
}
-static int my_yyinput(char* buff, guint size) {
+static size_t my_yyinput(char* buff, size_t size) {
if (offsetx >= len ) {
return YY_NULL;