aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcom.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-19 03:01:15 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-19 03:01:15 +0000
commitb476642bdce80779164aab86847d4cd8d811fada (patch)
tree055dd5e6640f61ef9ef484654923ed231d85eba0 /epan/dissectors/packet-dcom.c
parent35e2fb60016c832564aba0473d5da0e90f11ff2e (diff)
Fix some format strings and format string arguments.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18957 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dcom.c')
-rw-r--r--epan/dissectors/packet-dcom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dcom.c b/epan/dissectors/packet-dcom.c
index 4e1d88dd31..3f9f86f267 100644
--- a/epan/dissectors/packet-dcom.c
+++ b/epan/dissectors/packet-dcom.c
@@ -250,7 +250,7 @@ void dcom_interface_dump(void) {
for(objects = machine->objects; objects != NULL; objects = g_list_next(objects)) {
object = objects->data;
- g_warning(" Object(#%4u): OID:0x%x%x private:0x%x", object->first_packet, object->oid, object->private_data);
+ g_warning(" Object(#%4u): OID:0x%" PRIx64 " private:%p", object->first_packet, object->oid, object->private_data);
for(interfaces = object->interfaces; interfaces != NULL; interfaces = g_list_next(interfaces)) {
interf = interfaces->data;
@@ -1470,7 +1470,7 @@ dissect_dcom_append_UUID(tvbuff_t *tvb, int offset,
if (field_index != -1) {
proto_item_append_text(pi, "[%u]: ", field_index);
} else {
- proto_item_append_text(pi, ": ", field_index);
+ proto_item_append_text(pi, ": ");
}
if(uuid_name) {
@@ -1485,7 +1485,7 @@ dissect_dcom_append_UUID(tvbuff_t *tvb, int offset,
uuid->Data4[6], uuid->Data4[7]);
if(uuid_name) {
- proto_item_append_text(pi, ")", uuid_name);
+ proto_item_append_text(pi, ")");
}
/* update column info now */