Changeset 45145 in vbox for trunk/src/VBox
- Timestamp:
- Mar 22, 2013 3:03:53 PM (12 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/netif.h
r44742 r45145 153 153 Utf8Str strTmp = bstrIfName; 154 154 const char *pszIfName = strTmp.c_str(); 155 int iInstance = 0, iPos = strcspn(pszIfName, "0123456789"); 155 int iInstance = 0; 156 size_t iPos = strcspn(pszIfName, "0123456789"); 156 157 if (pszIfName[iPos]) 157 158 iInstance = RTStrToUInt32(pszIfName + iPos); -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r45138 r45145 1189 1189 #else 1190 1190 NOREF(aNATNetworks); 1191 # ifndef RT_OS_WINDOWS 1191 1192 NOREF(aNATNetworksSize); 1193 # endif 1192 1194 return E_NOTIMPL; 1193 1195 #endif
Note:
See TracChangeset
for help on using the changeset viewer.