From a5700f10c4eef1761a23547035201a8d75f17a58 Mon Sep 17 00:00:00 2001 From: Anders Broman Date: Mon, 6 Jun 2011 13:34:53 +0000 Subject: [PATCH] Make the windows builds work again. svn path=/trunk/; revision=37568 --- tap-iostat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap-iostat.c b/tap-iostat.c index 7bbea9a120..a70c8e84d4 100644 --- a/tap-iostat.c +++ b/tap-iostat.c @@ -339,7 +339,7 @@ iostat_packet(void *arg, packet_info *pinfo, epan_dissect_t *edt, const void *du new_time=fvalue_get(&((field_info *)gp->pdata[i])->value); val=(guint64)(new_time->secs)*1000000 + new_time->nsecs/1000; - tival = val % mit->parent->interval; + tival = (int)(val % mit->parent->interval); it->counter += tival; val -= tival; pit = it->prev;