aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icq.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-01-26 23:14:54 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-01-26 23:14:54 +0000
commit751d2ebfceafa6a57e5b7c38f6af8324dcf8b094 (patch)
treec45f469423fb793cb08e0826362a931e0ce5e9ec /epan/dissectors/packet-icq.c
parenta5def37d6da8a9a69aa8c0d63dfa249595576f18 (diff)
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.c2
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;
}
}