Get rid of some P64 warnings; those lengths should never be > 2^31-1.

svn path=/trunk/; revision=27782
This commit is contained in:
Guy Harris 2009-03-18 20:42:59 +00:00
parent e98e65977f
commit fd7d6fdc03
1 changed files with 2 additions and 2 deletions

View File

@ -129,8 +129,8 @@ dissect_acap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tokenlen, "Response Tag: %s",
format_text(line, tokenlen));
}
offset += next_token - line;
linelen -= next_token - line;
offset += (int)(next_token - line);
linelen -= (int)(next_token - line);
line = next_token;
}