aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcp-etsi.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-06-27 16:15:30 +0000
committerBill Meier <wmeier@newsguy.com>2008-06-27 16:15:30 +0000
commitf8e3822738c2c6c906c1927ebe88c639c766a725 (patch)
tree4085507410fd9cdbc670acc4969542f1f47d2fb4 /epan/dissectors/packet-dcp-etsi.c
parent09868c5db59d18f97a59e41831cbe98eda84b082 (diff)
Fix some warnings reported by gcc -Wshadow ...
Fix some spacing in packet-dcom.c svn path=/trunk/; revision=25618
Diffstat (limited to 'epan/dissectors/packet-dcp-etsi.c')
-rw-r--r--epan/dissectors/packet-dcp-etsi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dcp-etsi.c b/epan/dissectors/packet-dcp-etsi.c
index 2556e5f24f..87c9c8f68d 100644
--- a/epan/dissectors/packet-dcp-etsi.c
+++ b/epan/dissectors/packet-dcp-etsi.c
@@ -227,7 +227,7 @@ dissect_pft_fec_detailed(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree,
gboolean fec _U_,
guint16 rsk,
guint16 rsz,
- fragment_data *fd
+ fragment_data *fdx
)
{
guint16 decoded_size;
@@ -249,10 +249,10 @@ dissect_pft_fec_detailed(tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree,
rx_min = c_max*rsk/plen;
if(rx_min*plen<c_max*rsk)
rx_min++;
- if (fd)
+ if (fdx)
new_tvb = process_reassembled_data (tvb, offset, pinfo,
"Reassembled Message",
- fd, &dcp_frag_items,
+ fdx, &dcp_frag_items,
NULL, tree);
else {
guint fragments=0;