diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-01-26 23:14:54 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-01-26 23:14:54 +0000 |
commit | 751d2ebfceafa6a57e5b7c38f6af8324dcf8b094 (patch) | |
tree | c45f469423fb793cb08e0826362a931e0ce5e9ec /epan/dissectors/packet-icq.c | |
parent | a5def37d6da8a9a69aa8c0d63dfa249595576f18 (diff) | |
download | wireshark-751d2ebfceafa6a57e5b7c38f6af8324dcf8b094.tar.gz wireshark-751d2ebfceafa6a57e5b7c38f6af8324dcf8b094.tar.bz2 wireshark-751d2ebfceafa6a57e5b7c38f6af8324dcf8b094.zip |
if there must be an unknown version message, use hex instead of decimal to print the unknown version number
svn path=/trunk/; revision=13179
Diffstat (limited to 'epan/dissectors/packet-icq.c')
-rw-r--r-- | epan/dissectors/packet-icq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-icq.c b/epan/dissectors/packet-icq.c index 3255ecbb53..0de53f2ffa 100644 --- a/epan/dissectors/packet-icq.c +++ b/epan/dissectors/packet-icq.c @@ -2172,7 +2172,7 @@ static void dissect_icq(tvbuff_t *tvb, dissect_icqv2(tvb, pinfo, tree); break; default: - fprintf(stderr, "ICQ: Unknown version (%d)\n", version); + fprintf(stderr, "ICQ: Unknown version (0x%x)\n", version); break; } } |