Again, another warning (hopefully) removed.

svn path=/trunk/; revision=12841
This commit is contained in:
Ulf Lamping 2004-12-27 10:11:28 +00:00
parent c6bdaa41c6
commit b026aa4bc2
1 changed files with 1 additions and 1 deletions

View File

@ -1215,7 +1215,7 @@ add_tagged_field (packet_info * pinfo, proto_tree * tree, tvbuff_t * tvb, int of
memcpy (out_buff, tag_data_ptr, (size_t) tag_len);
out_buff[tag_len + 1] = 0;
for (i = 0; i < tag_len; i++) {
if (!isprint(out_buff[i])) {
if (!isprint( (int) out_buff[i])) {
out_buff[i]='.';
}
}