someip: Fix uint64 printf format

Use G_GUINT64_FORMAT for uint64.

Change-Id: Id5f686f0fcfcd2f1ee31b7e76b0a8028919e1a63
Reviewed-on: https://code.wireshark.org/review/34628
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Stig Bjørlykke 2019-09-26 09:54:39 +02:00 committed by Anders Broman
parent 3aeaf5c6fc
commit 2cb18634d8
1 changed files with 1 additions and 1 deletions

View File

@ -2042,7 +2042,7 @@ dissect_someip_payload_base_type(tvbuff_t* tvb, packet_info* pinfo _U_, proto_tr
}
value_set = TRUE;
proto_item_append_text(ti, ": %ld (0x%lx)", value, value);
proto_item_append_text(ti, ": %" G_GINT64_FORMAT "d (0x%" G_GINT64_FORMAT "x)", value, value);
}
} else {