mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 20:54:28 +08:00
fixed signed/unsigned comparison warning
svn path=/trunk/; revision=16628
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user