Commit 26390a47 authored by Mike Schaadt's avatar Mike Schaadt Committed by Alexandre Julliard

snmpapi: Changed %llu to %x%08lx.

parent 3744cd88
......@@ -564,7 +564,7 @@ VOID WINAPI SnmpUtilPrintAsnAny(AsnAny *any)
case ASN_TIMETICKS: TRACE("Timeticks %u\n", any->asnValue.ticks); return;
case ASN_COUNTER64:
{
TRACE("Counter64 %llu\n", any->asnValue.counter64.QuadPart);
TRACE("Counter64 %lx%08lx\n", (DWORD)(any->asnValue.counter64.QuadPart>>32),(DWORD)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