Commit 088c510e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

snmpapi: Trace 64-bit integers with I64 width modifier.

parent 059ba68e
......@@ -579,7 +579,7 @@ VOID WINAPI SnmpUtilPrintAsnAny(AsnAny *any)
case ASN_TIMETICKS: TRACE("Timeticks %lu\n", any->asnValue.ticks); return;
case ASN_COUNTER64:
{
TRACE("Counter64 %lx%08lx\n", (DWORD)(any->asnValue.counter64.QuadPart>>32),(DWORD)any->asnValue.counter64.QuadPart);
TRACE("Counter64 %I64x\n", any->asnValue.counter64.QuadPart);
return;
}
case ASN_OCTETSTRING:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment