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

oldstable
Mike Schaadt 2007-03-05 11:50:23 -06:00 committed by Alexandre Julliard
parent 3744cd8874
commit 26390a47c7
1 changed files with 1 additions and 1 deletions

View File

@ -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: