aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/k12text.l
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2009-01-08 13:28:30 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2009-01-08 13:28:30 +0000
commit6d5e6889f91b59bb0a49a8e539599c0d3194d1b4 (patch)
treeb9ea15c16edc0fe5845d992d3c45b6d79b112129 /wiretap/k12text.l
parente22d7c79eb3f221b7c090de1bb9ce03f2529f897 (diff)
get rid of few signed/unsigned mishmash warnings to have it with MSVC6 compilable
svn path=/trunk/; revision=27195
Diffstat (limited to 'wiretap/k12text.l')
-rw-r--r--wiretap/k12text.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/k12text.l b/wiretap/k12text.l
index e964e4f049..61cde500a6 100644
--- a/wiretap/k12text.l
+++ b/wiretap/k12text.l
@@ -281,7 +281,7 @@ static gboolean k12text_seek_read(wtap *wth, gint64 seek_off, union wtap_pseudo_
}
/* verify frame length parsed this time against original frame length */
- if (i != length) {
+ if (i != (guint)length) {
/* What happened ? This now seems to have a different length than originally */
*err_info = g_strdup("Incorrect frame length (program error ?)");
*err = WTAP_ERR_BAD_RECORD;