- Timestamp:
- Aug 26, 2009 9:00:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUSB.cpp
r22211 r22489 330 330 i++; 331 331 uint32_t u32; 332 rc = RTStrToUInt32Full(a->argv[i], 0, &u32);333 if (RT_FAILURE( rc))334 return errorArgument("Failed to convert the --maskedinterfaces value '%s' to a number, rc=%Rrc", a->argv[i],rc);332 int vrc = RTStrToUInt32Full(a->argv[i], 0, &u32); 333 if (RT_FAILURE(vrc)) 334 return errorArgument("Failed to convert the --maskedinterfaces value '%s' to a number, vrc=%Rrc", a->argv[i], vrc); 335 335 cmd.mFilter.mMaskedInterfaces = u32; 336 336 }
Note:
See TracChangeset
for help on using the changeset viewer.