In "u64toa()":
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 30 Oct 2001 08:39:02 +0000 (08:39 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 30 Oct 2001 08:39:02 +0000 (08:39 +0000)
commit1a781c47c184434af6588ac34baee17bea4cd549
tree234722d971b8d49cb72ee813aedded8d38050569
parent46bcac711ed354a1b7f3c70584460fb5dd44be81
In "u64toa()":

If the byte being investigated is 0, don't just do a "continue";
this might be one of the passes on which we have to propagate
carries, so skip the processing of that byte's bits, but fall
through to the carry processing.

In the carry processing loop, don't use "i" as the loop index,
as we're already using it as the outer loop index.

In "u64toh()", use lower-case letters rather than upper-case letters, as
we use "%x" rather than "%X" to print 8, 16, 24, and 32-bit integral
values in the "proto.c" code.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4103 f5534014-38df-0310-8fa8-9805f1628bb7
int-64bit.c