Commit 9eaf9917 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

iphlpapi: Fix GetIfTable() trace message.

parent 37804f1e
......@@ -1800,8 +1800,8 @@ DWORD WINAPI GetIfTable(PMIB_IFTABLE pIfTable, PULONG pdwSize, BOOL bOrder)
{
DWORD ret;
TRACE("pIfTable %p, pdwSize %p, bOrder %d\n", pdwSize, pdwSize,
(DWORD)bOrder);
TRACE("pIfTable %p, pdwSize %p, bOrder %d\n", pIfTable, pdwSize, bOrder);
if (!pdwSize)
ret = ERROR_INVALID_PARAMETER;
else {
......
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