fixed signed/unsigned comparison warning

svn path=/trunk/; revision=16628
This commit is contained in:
Thomas Bluemel 2005-07-17 19:20:12 +00:00
parent 53f97f1bee
commit 0825640a24

View file

@ -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);