VirtualBox

Ignore:
Timestamp:
Apr 22, 2018 11:50:39 AM (7 years ago)
Author:
vboxsync
Message:

ValidationKit/SerialTest: Fix selecting the data bit count

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/serial/SerialTest.cpp

    r71029 r71957  
    784784                break;
    785785            case 'c':
    786                 if (!RTStrICmp(ValueUnion.psz, "5"))
     786                if (ValueUnion.u32 == 5)
    787787                    g_SerialPortCfg.enmDataBitCount = RTSERIALPORTDATABITS_5BITS;
    788                 else if (!RTStrICmp(ValueUnion.psz, "6"))
     788                else if (ValueUnion.u32 == 6)
    789789                    g_SerialPortCfg.enmDataBitCount = RTSERIALPORTDATABITS_6BITS;
    790                 else if (!RTStrICmp(ValueUnion.psz, "7"))
     790                else if (ValueUnion.u32 == 7)
    791791                    g_SerialPortCfg.enmDataBitCount = RTSERIALPORTDATABITS_7BITS;
    792                 else if (!RTStrICmp(ValueUnion.psz, "8"))
     792                else if (ValueUnion.u32 == 8)
    793793                    g_SerialPortCfg.enmDataBitCount = RTSERIALPORTDATABITS_8BITS;
    794794                else
    795795                {
    796                     RTPrintf("Unknown data bitcount \"%s\" given\n", ValueUnion.psz);
     796                    RTPrintf("Unknown data bitcount \"%u\" given\n", ValueUnion.u32);
    797797                    return RTEXITCODE_FAILURE;
    798798                }
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