mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
fixed signed/unsigned comparison warning
svn path=/trunk/; revision=16628
This commit is contained in:
parent
53f97f1bee
commit
0825640a24
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ typedef struct _IP_INTERFACE_INFO {
|
|||
*/
|
||||
result = GetInterfaceInfo(pIfTable, &dwOutBufLen);
|
||||
if (result == NO_ERROR) {
|
||||
UINT i;
|
||||
INT i;
|
||||
_tprintf(_T("GetInterfaceInfo() returned with %ld adaptor entries\n"), pIfTable->NumAdapters);
|
||||
for (i = 0; i < pIfTable->NumAdapters; i++) {
|
||||
wprintf(L"[%d] %s\n", i + 1, pIfTable->Adapter[i].Name);
|
||||
|
|
Loading…
Reference in a new issue