VirtualBox

Changeset 22489 in vbox for trunk/src


Ignore:
Timestamp:
Aug 26, 2009 9:00:26 PM (15 years ago)
Author:
vboxsync
Message:

VBoxManageUSB.cpp: Fixed RC mixup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageUSB.cpp

    r22211 r22489  
    330330                    i++;
    331331                    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);
    335335                    cmd.mFilter.mMaskedInterfaces = u32;
    336336                }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette