aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-16 03:18:10 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-16 03:18:10 +0000
commit605ef095f929bf68880009342d530112bde91cc6 (patch)
tree069d8d384a038e7fd12d35078c5039ebd9ec6b84 /gtk/voip_calls_dlg.c
parent1582e052a196d25a78f8b63bb2f46ce039c0f255 (diff)
Fix the last of the Win64 problems in the gtk directory.
svn path=/trunk/; revision=28063
Diffstat (limited to 'gtk/voip_calls_dlg.c')
-rw-r--r--gtk/voip_calls_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/voip_calls_dlg.c b/gtk/voip_calls_dlg.c
index f065759f68..f5d91bbc97 100644
--- a/gtk/voip_calls_dlg.c
+++ b/gtk/voip_calls_dlg.c
@@ -276,8 +276,8 @@ voip_calls_on_filter (GtkButton *button _U_,
const gchar *filter_prepend;
gboolean isFirst = TRUE;
GList* list;
- guint filter_length = 0;
- guint max_filter_length = 2048;
+ size_t filter_length = 0;
+ size_t max_filter_length = 2048;
sip_calls_info_t *tmp_sipinfo;
isup_calls_info_t *tmp_isupinfo;
h323_calls_info_t *tmp_h323info;