aboutsummaryrefslogtreecommitdiffstats
path: root/rawshark.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-16 04:05:39 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-16 04:05:39 +0000
commite648060f0f307b2df23902338fa5d22c4d490465 (patch)
tree1f4158ed7e68052c732725d2535039b9523e38de /rawshark.c
parent17f0d877faff64832b2a93f24d21b873fe59919e (diff)
Fix the last(?) of the Win64 compilation problems.
svn path=/trunk/; revision=28065
Diffstat (limited to 'rawshark.c')
-rw-r--r--rawshark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rawshark.c b/rawshark.c
index afa3d5c964..cea87ab2d6 100644
--- a/rawshark.c
+++ b/rawshark.c
@@ -1503,8 +1503,8 @@ add_string_fmt(string_fmt_e format, gchar *plain) {
static gboolean
parse_field_string_format(gchar *format) {
GString *plain_s = g_string_new("");
- int len;
- int pos = 0;
+ size_t len;
+ size_t pos = 0;
if (!format) {
return FALSE;