aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gprs-llc.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-08-01 11:25:23 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-08-01 11:25:23 +0000
commitacd81d93f8e2f33ac86290a44105e20184bd93dc (patch)
tree748ed6d9a42cef1184e0c87e350aca9a94c90e1d /epan/dissectors/packet-gprs-llc.c
parent37969b91b153e2614155892d2724569200551462 (diff)
Fix packet-gprs-llc.c:413: warning: format '%lu' expects type 'long unsigned int', but argument 7 has type 'guint32' and the modified makfiloe.common missed in previous checkin.
svn path=/trunk/; revision=25891
Diffstat (limited to 'epan/dissectors/packet-gprs-llc.c')
-rw-r--r--epan/dissectors/packet-gprs-llc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gprs-llc.c b/epan/dissectors/packet-gprs-llc.c
index 6814786dba..ebed753256 100644
--- a/epan/dissectors/packet-gprs-llc.c
+++ b/epan/dissectors/packet-gprs-llc.c
@@ -409,7 +409,7 @@ static void llc_gprs_dissect_xid(tvbuff_t *tvb,
value |= (guint32)tvb_get_guint8(tvb, location+i );
}
uinfo_field = proto_tree_add_text(xid_tree, tvb, location, item_len,
- "XID Parameter Type: %s - Value: %lu",
+ "XID Parameter Type: %s - Value: %u",
val_to_str(tmp, xid_param_type_str,"Reserved Type:%X"),value);
}
else