mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
snmpapi: Fix printf format warnings.
This commit is contained in:
parent
b814c45f00
commit
684d72f257
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ VOID WINAPI SnmpUtilPrintAsnAny(AsnAny *any)
|
||||||
case ASN_TIMETICKS: TRACE("Timeticks %u\n", any->asnValue.ticks); return;
|
case ASN_TIMETICKS: TRACE("Timeticks %u\n", any->asnValue.ticks); return;
|
||||||
case ASN_COUNTER64:
|
case ASN_COUNTER64:
|
||||||
{
|
{
|
||||||
TRACE("Counter64 %lx%08lx\n", (DWORD)(any->asnValue.counter64.QuadPart>>32),(DWORD)any->asnValue.counter64.QuadPart);
|
TRACE("Counter64 %x%08x\n", (DWORD)(any->asnValue.counter64.QuadPart>>32),(DWORD)any->asnValue.counter64.QuadPart);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
case ASN_OCTETSTRING:
|
case ASN_OCTETSTRING:
|
||||||
|
|
Loading…
Reference in a new issue