VirtualBox

Changeset 17083 in vbox for trunk


Ignore:
Timestamp:
Feb 24, 2009 5:31:56 PM (16 years ago)
Author:
vboxsync
Message:

IPRT: formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/getopt.cpp

    r17082 r17083  
    5959        bool fShort = (    *pszArgThis == '-'
    6060                        && (uint32_t)pszArgThis[1] == paOptions[i].uShort
    61                         );
     61                      );
    6262
    6363        if ((paOptions[i].fFlags & RTGETOPT_REQ_MASK) != RTGETOPT_REQ_NOTHING)
     
    7777                            || pszArgThis[cchLong] == '=')
    7878                    )
    79                     || fShort
     79                 || fShort
    8080                )
    8181            {
     
    8787                const char *pszValue;
    8888                if (    fShort
    89                          pszArgThis[2] == '\0'
     89                     ?     pszArgThis[2] == '\0'
    9090                        || ((pszArgThis[2] == ':' || pszArgThis[2] == '=') && pszArgThis[3] == '\0')
    91                     :   pszArgThis[cchLong] == '\0' || pszArgThis[cchLong + 1] == '\0')
     91                     :  pszArgThis[cchLong] == '\0' || pszArgThis[cchLong + 1] == '\0')
    9292                {
    9393                    if (iThis + 1 >= argc)
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