diff options
author | Gerald Combs <gerald@wireshark.org> | 2009-04-16 03:38:23 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2009-04-16 03:38:23 +0000 |
commit | 17f0d877faff64832b2a93f24d21b873fe59919e (patch) | |
tree | 253e33214029012feff56f1b85d83121fef627cf /plugins/irda | |
parent | 605ef095f929bf68880009342d530112bde91cc6 (diff) | |
download | wireshark-17f0d877faff64832b2a93f24d21b873fe59919e.tar.gz wireshark-17f0d877faff64832b2a93f24d21b873fe59919e.tar.bz2 wireshark-17f0d877faff64832b2a93f24d21b873fe59919e.zip |
Fix Win64 compilation problems in the plugins directory.
svn path=/trunk/; revision=28064
Diffstat (limited to 'plugins/irda')
-rw-r--r-- | plugins/irda/packet-sir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/irda/packet-sir.c b/plugins/irda/packet-sir.c index 3be593f426..18a6a9d43b 100644 --- a/plugins/irda/packet-sir.c +++ b/plugins/irda/packet-sir.c @@ -85,7 +85,7 @@ unescape_data(tvbuff_t *tvb, packet_info *pinfo) *dst++ = c; } - next_tvb = tvb_new_real_data(data, dst-data, dst-data); + next_tvb = tvb_new_real_data(data, (guint) (dst-data), (guint) (dst-data)); tvb_set_free_cb(next_tvb, g_free); tvb_set_child_real_data_tvbuff(tvb, next_tvb); add_new_data_source(pinfo, next_tvb, "Unescaped SIR"); |