VirtualBox

Changeset 18751 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 6, 2009 12:05:01 PM (16 years ago)
Author:
vboxsync
Message:

Frontends/SDL: double-dash command line options

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r18494 r18751  
    659659{
    660660    RTPrintf("Usage:\n"
    661              "  -vm <id|name>            Virtual machine to start, either UUID or name\n"
    662              "  -hda <file>              Set temporary first hard disk to file\n"
    663              "  -fda <file>              Set temporary first floppy disk to file\n"
    664              "  -cdrom <file>            Set temporary CDROM/DVD to file/device ('none' to unmount)\n"
    665              "  -boot <a|c|d|n>          Set temporary boot device (a = floppy, c = 1st HD, d = DVD, n = network)\n"
    666              "  -m <size>                Set temporary memory size in megabytes\n"
    667              "  -vram <size>             Set temporary size of video memory in megabytes\n"
    668              "  -fullscreen              Start VM in fullscreen mode\n"
    669              "  -fullscreenresize        Resize the guest on fullscreen\n"
    670              "  -fixedmode <w> <h> <bpp> Use a fixed SDL video mode with given width, height and bits per pixel\n"
    671              "  -nofstoggle              Forbid switching to/from fullscreen mode\n"
    672              "  -noresize                Make the SDL frame non resizable\n"
    673              "  -nohostkey               Disable all hostkey combinations\n"
    674              "  -nohostkeys ...          Disable specific hostkey combinations, see below for valid keys\n"
    675              "  -nograbonclick           Disable mouse/keyboard grabbing on mouse click w/o additions\n"
    676              "  -detecthostkey           Get the hostkey identifier and modifier state\n"
    677              "  -hostkey <key> {<key2>} <mod> Set the host key to the values obtained using -detecthostkey\n"
    678              "  -termacpi                Send an ACPI power button event when closing the window\n"
     661             "  --startvm <uuid|name>    Virtual machine to start, either UUID or name\n"
     662             "  --hda <file>             Set temporary first hard disk to file\n"
     663             "  --fda <file>             Set temporary first floppy disk to file\n"
     664             "  --cdrom <file>           Set temporary CDROM/DVD to file/device ('none' to unmount)\n"
     665             "  --boot <a|c|d|n>         Set temporary boot device (a = floppy, c = 1st HD, d = DVD, n = network)\n"
     666             "  --memory <size>          Set temporary memory size in megabytes\n"
     667             "  --vram <size>            Set temporary size of video memory in megabytes\n"
     668             "  --fullscreen             Start VM in fullscreen mode\n"
     669             "  --fullscreenresize       Resize the guest on fullscreen\n"
     670             "  --fixedmode <w> <h> <bpp> Use a fixed SDL video mode with given width, height and bits per pixel\n"
     671             "  --nofstoggle             Forbid switching to/from fullscreen mode\n"
     672             "  --noresize               Make the SDL frame non resizable\n"
     673             "  --nohostkey              Disable all hostkey combinations\n"
     674             "  --nohostkeys ...         Disable specific hostkey combinations, see below for valid keys\n"
     675             "  --nograbonclick          Disable mouse/keyboard grabbing on mouse click w/o additions\n"
     676             "  --detecthostkey          Get the hostkey identifier and modifier state\n"
     677             "  --hostkey <key> {<key2>} <mod> Set the host key to the values obtained using --detecthostkey\n"
     678             "  --termacpi               Send an ACPI power button event when closing the window\n"
    679679#if defined(RT_OS_LINUX) || defined(RT_OS_DARWIN) /** @todo UNIXISH_TAP stuff out of main and up to Config.kmk! */
    680              "  -evdevkeymap             Use evdev keycode map\n"
     680             "  --evdevkeymap            Use evdev keycode map\n"
    681681#endif
    682682#ifdef VBOX_WITH_VRDP
    683              "  -vrdp <port>             Listen for VRDP connections on port (default if not specified)\n"
    684 #endif
    685              "  -discardstate            Discard saved state (if present) and revert to last snapshot (if present)\n"
     683             "  --vrdp <port>            Listen for VRDP connections on port (default if not specified)\n"
     684#endif
     685             "  --discardstate           Discard saved state (if present) and revert to last snapshot (if present)\n"
    686686#ifdef VBOX_SECURELABEL
    687              "  -securelabel             Display a secure VM label at the top of the screen\n"
    688              "  -seclabelfnt             TrueType (.ttf) font file for secure session label\n"
    689              "  -seclabelsiz             Font point size for secure session label (default 12)\n"
    690              "  -seclabelofs             Font offset within the secure label (default 0)\n"
    691              "  -seclabelfgcol <rgb>     Secure label text color RGB value in 6 digit hexadecimal (eg: FFFF00)\n"
    692              "  -seclabelbgcol <rgb>     Secure label background color RGB value in 6 digit hexadecimal (eg: FF0000)\n"
     687             "  --securelabel            Display a secure VM label at the top of the screen\n"
     688             "  --seclabelfnt            TrueType (.ttf) font file for secure session label\n"
     689             "  --seclabelsiz            Font point size for secure session label (default 12)\n"
     690             "  --seclabelofs            Font offset within the secure label (default 0)\n"
     691             "  --seclabelfgcol <rgb>    Secure label text color RGB value in 6 digit hexadecimal (eg: FFFF00)\n"
     692             "  --seclabelbgcol <rgb>    Secure label background color RGB value in 6 digit hexadecimal (eg: FF0000)\n"
    693693#endif
    694694#ifdef VBOXSDL_ADVANCED_OPTIONS
    695              "  -[no]rawr0               Enable or disable raw ring 3\n"
    696              "  -[no]rawr3               Enable or disable raw ring 0\n"
    697              "  -[no]patm                Enable or disable PATM\n"
    698              "  -[no]csam                Enable or disable CSAM\n"
    699              "  -[no]hwvirtex            Permit or deny the usage of VMX/SVN\n"
     695             "  --[no]rawr0              Enable or disable raw ring 3\n"
     696             "  --[no]rawr3              Enable or disable raw ring 0\n"
     697             "  --[no]patm               Enable or disable PATM\n"
     698             "  --[no]csam               Enable or disable CSAM\n"
     699             "  --[no]hwvirtex           Permit or deny the usage of VT-x/AMD-V\n"
    700700#endif
    701701             "\n"
    702              "  -convertSettings         Allow to auto-convert settings files\n"
    703              "  -convertSettingsBackup   Allow to auto-convert settings files\n"
     702             "  --convertSettings        Allow to auto-convert settings files\n"
     703             "  --convertSettingsBackup  Allow to auto-convert settings files\n"
    704704             "                           but create backup copies before\n"
    705              "  -convertSettingsIgnore   Allow to auto-convert settings files\n"
     705             "  --convertSettingsIgnore  Allow to auto-convert settings files\n"
    706706             "                           but don't explicitly save the results\n"
    707707             "\n"
     
    884884"line and repeat the command:\n"
    885885"\n"
    886 "  -convertSettings       - to save all auto-converted files (it will not\n"
    887 "                           be possible to use these settings files with an\n"
    888 "                           older version of VirtualBox in the future);\n"
    889 "  -convertSettingsBackup - to create backup copies of the settings files in\n"
    890 "                           the old format before saving them in the new format;\n"
    891 "  -convertSettingsIgnore - to not save the auto-converted settings files.\n"
     886"  --convertSettings       - to save all auto-converted files (it will not\n"
     887"                            be possible to use these settings files with an\n"
     888"                            older version of VirtualBox in the future);\n"
     889"  --convertSettingsBackup - to create backup copies of the settings files in\n"
     890"                            the old format before saving them in the new format;\n"
     891"  --convertSettingsIgnore - to not save the auto-converted settings files.\n"
    892892"\n"
    893 "Note that if you use -convertSettingsIgnore, the auto-converted settings files\n"
     893"Note that if you use --convertSettingsIgnore, the auto-converted settings files\n"
    894894"will be implicitly saved in the new format anyway once you change a setting or\n"
    895895"start a virtual machine, but NO backup copies will be created in this case.\n");
     
    974974     * we initialize anything COM related
    975975     */
    976     if (argc == 2 && !strcmp(argv[1], "-detecthostkey"))
     976    if (argc == 2 && (   !strcmp(argv[1], "-detecthostkey")
     977                      || !strcmp(argv[1], "--detecthostkey")))
    977978    {
    978979        int rc = SDL_InitSubSystem(SDL_INIT_VIDEO | SDL_INIT_TIMER | SDL_INIT_NOPARACHUTE);
     
    989990        }
    990991
    991         RTPrintf("Please hit one or two function key(s) to get the -hostkey value...\n");
     992        RTPrintf("Please hit one or two function key(s) to get the --hostkey value...\n");
    992993
    993994        SDL_Event event1;
     
    10031004                    {
    10041005                        /* pressed additional host key */
    1005                         RTPrintf("-hostkey %d", event1.key.keysym.sym);
     1006                        RTPrintf("--hostkey %d", event1.key.keysym.sym);
    10061007                        if (event2.type == SDL_KEYDOWN)
    10071008                        {
     
    12061207    for (int curArg = 1; curArg < argc; curArg++)
    12071208    {
    1208         if (   strcmp(argv[curArg], "-vm") == 0
    1209             || strcmp(argv[curArg], "-startvm") == 0)
     1209        if (   !strcmp(argv[curArg], "--vm")
     1210            || !strcmp(argv[curArg], "-vm")
     1211            || !strcmp(argv[curArg], "--startvm")
     1212            || !strcmp(argv[curArg], "-startvm")
     1213            || !strcmp(argv[curArg], "-s")
     1214            )
    12101215        {
    12111216            if (++curArg >= argc)
     
    12221227            }
    12231228        }
    1224         else if (strcmp(argv[curArg], "-boot") == 0)
     1229        else if (   !strcmp(argv[curArg], "--comment")
     1230                 || !strcmp(argv[curArg], "-comment"))
     1231        {
     1232            if (++curArg >= argc)
     1233            {
     1234                RTPrintf("Error: missing argument for comment!\n");
     1235                rc = E_FAIL;
     1236                break;
     1237            }
     1238        }
     1239        else if (   !strcmp(argv[curArg], "--boot")
     1240                 || !strcmp(argv[curArg], "-boot"))
    12251241        {
    12261242            if (++curArg >= argc)
     
    12661282                break;
    12671283        }
    1268         else if (strcmp(argv[curArg], "-m") == 0)
     1284        else if (   !strcmp(argv[curArg], "--memory")
     1285                 || !strcmp(argv[curArg], "-memory")
     1286                 || !strcmp(argv[curArg], "-m"))
    12691287        {
    12701288            if (++curArg >= argc)
     
    12761294            memorySize = atoi(argv[curArg]);
    12771295        }
    1278         else if (strcmp(argv[curArg], "-vram") == 0)
     1296        else if (   !strcmp(argv[curArg], "--vram")
     1297                 || !strcmp(argv[curArg], "-vram"))
    12791298        {
    12801299            if (++curArg >= argc)
     
    12861305            vramSize = atoi(argv[curArg]);
    12871306        }
    1288         else if (strcmp(argv[curArg], "-fullscreen") == 0)
     1307        else if (   !strcmp(argv[curArg], "--fullscreen")
     1308                 || !strcmp(argv[curArg], "-fullscreen"))
    12891309        {
    12901310            fFullscreen = true;
    12911311        }
    1292         else if (strcmp(argv[curArg], "-fullscreenresize") == 0)
     1312        else if (   !strcmp(argv[curArg], "--fullscreenresize")
     1313                 || !strcmp(argv[curArg], "-fullscreenresize"))
    12931314        {
    12941315            gfFullscreenResize = true;
     
    12971318#endif
    12981319        }
    1299         else if (strcmp(argv[curArg], "-fixedmode") == 0)
     1320        else if (   !strcmp(argv[curArg], "--fixedmode")
     1321                 || !strcmp(argv[curArg], "-fixedmode"))
    13001322        {
    13011323            /* three parameters follow */
     
    13101332            fixedBPP    = atoi(argv[++curArg]);
    13111333        }
    1312         else if (strcmp(argv[curArg], "-nofstoggle") == 0)
     1334        else if (   !strcmp(argv[curArg], "--nofstoggle")
     1335                 || !strcmp(argv[curArg], "-nofstoggle"))
    13131336        {
    13141337            gfAllowFullscreenToggle = FALSE;
    13151338        }
    1316         else if (strcmp(argv[curArg], "-noresize") == 0)
     1339        else if (   !strcmp(argv[curArg], "--noresize")
     1340                 || !strcmp(argv[curArg], "-noresize"))
    13171341        {
    13181342            fResizable = false;
    13191343        }
    1320         else if (strcmp(argv[curArg], "-nohostkey") == 0)
     1344        else if (   !strcmp(argv[curArg], "--nohostkey")
     1345                 || !strcmp(argv[curArg], "-nohostkey"))
    13211346        {
    13221347            gHostKeyMod  = 0;
    13231348            gHostKeySym1 = 0;
    13241349        }
    1325         else if (strcmp(argv[curArg], "-nohostkeys") == 0)
     1350        else if (   !strcmp(argv[curArg], "--nohostkeys")
     1351                 || !strcmp(argv[curArg], "-nohostkeys"))
    13261352        {
    13271353            if (++curArg >= argc)
     
    13461372                break;
    13471373        }
    1348         else if (strcmp(argv[curArg], "-nograbonclick") == 0)
     1374        else if (   !strcmp(argv[curArg], "--nograbonclick")
     1375                 || !strcmp(argv[curArg], "-nograbonclick"))
    13491376        {
    13501377            gfGrabOnMouseClick = FALSE;
    13511378        }
    1352         else if (strcmp(argv[curArg], "-termacpi") == 0)
     1379        else if (   !strcmp(argv[curArg], "--termacpi")
     1380                 || !strcmp(argv[curArg], "-termacpi"))
    13531381        {
    13541382            gfACPITerm = TRUE;
    13551383        }
    1356         else if (strcmp(argv[curArg], "-pidfile") == 0)
     1384        else if (   !strcmp(argv[curArg], "--pidfile")
     1385                 || !strcmp(argv[curArg], "-pidfile"))
    13571386        {
    13581387            if (++curArg >= argc)
    13591388            {
    1360                 RTPrintf("Error: missing file name for -pidfile!\n");
     1389                RTPrintf("Error: missing file name for --pidfile!\n");
    13611390                rc = E_FAIL;
    13621391                break;
     
    13641393            gpszPidFile = argv[curArg];
    13651394        }
    1366         else if (strcmp(argv[curArg], "-hda") == 0)
     1395        else if (   !strcmp(argv[curArg], "--hda")
     1396                 || !strcmp(argv[curArg], "-hda"))
    13671397        {
    13681398            if (++curArg >= argc)
     
    13821412            }
    13831413        }
    1384         else if (strcmp(argv[curArg], "-fda") == 0)
     1414        else if (   !strcmp(argv[curArg], "--fda")
     1415                 || !strcmp(argv[curArg], "-fda"))
    13851416        {
    13861417            if (++curArg >= argc)
     
    14001431            }
    14011432        }
    1402         else if (strcmp(argv[curArg], "-cdrom") == 0)
     1433        else if (   !strcmp(argv[curArg], "--cdrom")
     1434                 || !strcmp(argv[curArg], "-cdrom"))
    14031435        {
    14041436            if (++curArg >= argc)
     
    14191451        }
    14201452#ifdef RT_OS_LINUX
    1421         else if (strcmp(argv[curArg], "-evdevkeymap") == 0)
     1453        else if (   !strcmp(argv[curArg], "--evdevkeymap")
     1454                 || !strcmp(argv[curArg], "-evdevkeymap"))
    14221455        {
    14231456            guseEvdevKeymap = TRUE;
     
    14251458#endif /* RT_OS_LINUX  */
    14261459#ifdef VBOX_WITH_VRDP
    1427         else if (strcmp(argv[curArg], "-vrdp") == 0)
     1460        else if (   !strcmp(argv[curArg], "--vrdp")
     1461                 || !strcmp(argv[curArg], "-vrdp"))
    14281462        {
    14291463            // start with the standard VRDP port
     
    14441478        }
    14451479#endif /* VBOX_WITH_VRDP */
    1446         else if (strcmp(argv[curArg], "-discardstate") == 0)
     1480        else if (   !strcmp(argv[curArg], "--discardstate")
     1481                 || !strcmp(argv[curArg], "-discardstate"))
    14471482        {
    14481483            fDiscardState = true;
    14491484        }
    14501485#ifdef VBOX_SECURELABEL
    1451         else if (strcmp(argv[curArg], "-securelabel") == 0)
     1486        else if (   !strcmp(argv[curArg], "--securelabel")
     1487                 || !strcmp(argv[curArg], "-securelabel"))
    14521488        {
    14531489            fSecureLabel = true;
    14541490            LogFlow(("Secure labelling turned on\n"));
    14551491        }
    1456         else if (strcmp(argv[curArg], "-seclabelfnt") == 0)
     1492        else if (   !strcmp(argv[curArg], "--seclabelfnt")
     1493                 || !strcmp(argv[curArg], "-seclabelfnt"))
    14571494        {
    14581495            if (++curArg >= argc)
     
    14641501            secureLabelFontFile = argv[curArg];
    14651502        }
    1466         else if (strcmp(argv[curArg], "-seclabelsiz") == 0)
     1503        else if (   !strcmp(argv[curArg], "--seclabelsiz")
     1504                 || !strcmp(argv[curArg], "-seclabelsiz"))
    14671505        {
    14681506            if (++curArg >= argc)
     
    14741512            secureLabelPointSize = atoi(argv[curArg]);
    14751513        }
    1476         else if (strcmp(argv[curArg], "-seclabelofs") == 0)
     1514        else if (   !strcmp(argv[curArg], "--seclabelofs")
     1515                 || !strcmp(argv[curArg], "-seclabelofs"))
    14771516        {
    14781517            if (++curArg >= argc)
     
    14841523            secureLabelFontOffs = atoi(argv[curArg]);
    14851524        }
    1486         else if (strcmp(argv[curArg], "-seclabelfgcol") == 0)
     1525        else if (   !strcmp(argv[curArg], "--seclabelfgcol")
     1526                 || !strcmp(argv[curArg], "-seclabelfgcol"))
    14871527        {
    14881528            if (++curArg >= argc)
     
    14941534            sscanf(argv[curArg], "%X", &secureLabelColorFG);
    14951535        }
    1496         else if (strcmp(argv[curArg], "-seclabelbgcol") == 0)
     1536        else if (   !strcmp(argv[curArg], "--seclabelbgcol")
     1537                 || !strcmp(argv[curArg], "-seclabelbgcol"))
    14971538        {
    14981539            if (++curArg >= argc)
     
    15061547#endif
    15071548#ifdef VBOXSDL_ADVANCED_OPTIONS
    1508         else if (strcmp(argv[curArg], "-rawr0") == 0)
     1549        else if (   !strcmp(argv[curArg], "--rawr0")
     1550                 || !strcmp(argv[curArg], "-rawr0"))
    15091551            fRawR0 = true;
    1510         else if (strcmp(argv[curArg], "-norawr0") == 0)
     1552        else if (   !strcmp(argv[curArg], "--norawr0")
     1553                 || !strcmp(argv[curArg], "-norawr0"))
    15111554            fRawR0 = false;
    1512         else if (strcmp(argv[curArg], "-rawr3") == 0)
     1555        else if (   !strcmp(argv[curArg], "--rawr3")
     1556                 || !strcmp(argv[curArg], "-rawr3"))
    15131557            fRawR3 = true;
    1514         else if (strcmp(argv[curArg], "-norawr3") == 0)
     1558        else if (   !strcmp(argv[curArg], "--norawr3")
     1559                 || !strcmp(argv[curArg], "-norawr3"))
    15151560            fRawR3 = false;
    1516         else if (strcmp(argv[curArg], "-patm") == 0)
     1561        else if (   !strcmp(argv[curArg], "--patm")
     1562                 || !strcmp(argv[curArg], "-patm"))
    15171563            fPATM = true;
    1518         else if (strcmp(argv[curArg], "-nopatm") == 0)
     1564        else if (   !strcmp(argv[curArg], "--nopatm")
     1565                 || !strcmp(argv[curArg], "-nopatm"))
    15191566            fPATM = false;
    1520         else if (strcmp(argv[curArg], "-csam") == 0)
     1567        else if (   !strcmp(argv[curArg], "--csam")
     1568                 || !strcmp(argv[curArg], "-csam"))
    15211569            fCSAM = true;
    1522         else if (strcmp(argv[curArg], "-nocsam") == 0)
     1570        else if (   !strcmp(argv[curArg], "--nocsam")
     1571                 || !strcmp(argv[curArg], "-nocsam"))
    15231572            fCSAM = false;
    1524         else if (strcmp(argv[curArg], "-hwvirtex") == 0)
     1573        else if (   !strcmp(argv[curArg], "--hwvirtex")
     1574                 || !strcmp(argv[curArg], "-hwvirtex"))
    15251575            fHWVirt = TSBool_True;
    1526         else if (strcmp(argv[curArg], "-nohwvirtex") == 0)
     1576        else if (   !strcmp(argv[curArg], "--nohwvirtex")
     1577                 || !strcmp(argv[curArg], "-nohwvirtex"))
    15271578            fHWVirt = TSBool_False;
    1528         else if (strcmp(argv[curArg], "-warpdrive") == 0)
     1579        else if (   !strcmp(argv[curArg], "--warpdrive")
     1580                 || !strcmp(argv[curArg], "-warpdrive"))
    15291581        {
    15301582            if (++curArg >= argc)
    15311583            {
    1532                 RTPrintf("Error: missing the rate value for the -warpdrive option!\n");
     1584                RTPrintf("Error: missing the rate value for the --warpdrive option!\n");
    15331585                rc = E_FAIL;
    15341586                break;
     
    15441596#endif /* VBOXSDL_ADVANCED_OPTIONS */
    15451597#ifdef VBOX_WIN32_UI
    1546         else if (strcmp(argv[curArg], "-win32ui") == 0)
     1598        else if (   !strcmp(argv[curArg], "--win32ui")
     1599                 || !strcmp(argv[curArg], "-win32ui"))
    15471600            fWin32UI = true;
    15481601#endif
    1549         else if (strcmp(argv[curArg], "-showsdlconfig") == 0)
     1602        else if (   !strcmp(argv[curArg], "--showsdlconfig")
     1603                 || !strcmp(argv[curArg], "-showsdlconfig"))
    15501604            fShowSDLConfig = true;
    1551         else if (strcmp(argv[curArg], "-hostkey") == 0)
     1605        else if (   !strcmp(argv[curArg], "--hostkey")
     1606                 || !strcmp(argv[curArg], "-hostkey"))
    15521607        {
    15531608            if (++curArg + 1 >= argc)
     
    15651620            gHostKeyMod = atoi(argv[curArg]);
    15661621        }
    1567         else if (strcmp(argv[curArg], "-convertSettings") == 0)
     1622        else if (   !strcmp(argv[curArg], "--convertSettings")
     1623                 || !strcmp(argv[curArg], "-convertSettings"))
    15681624            fConvertSettings = ConvertSettings_Yes;
    1569         else if (strcmp(argv[curArg], "-convertSettingsBackup") == 0)
     1625        else if (   !strcmp(argv[curArg], "--convertSettingsBackup")
     1626                 || !strcmp(argv[curArg], "-convertSettingsBackup"))
    15701627            fConvertSettings = ConvertSettings_Backup;
    1571         else if (strcmp(argv[curArg], "-convertSettingsIgnore") == 0)
     1628        else if (   !strcmp(argv[curArg], "--convertSettingsIgnore")
     1629                 || !strcmp(argv[curArg], "-convertSettingsIgnore"))
    15721630            fConvertSettings = ConvertSettings_Ignore;
    15731631        /* just show the help screen */
    15741632        else
    15751633        {
    1576             if (   strcmp(argv[curArg], "-h") != 0
    1577                 && strcmp(argv[curArg], "-help") != 0
     1634            if (   strcmp(argv[curArg], "-h")
     1635                && strcmp(argv[curArg], "-help")
    15781636                && strcmp(argv[curArg], "--help"))
    15791637                RTPrintf("Error: unrecognized switch '%s'\n", argv[curArg]);
     
    17021760         * First special case 'none' to unmount
    17031761         */
    1704         if (strcmp (fdaFile, "none") == 0)
     1762        if (!strcmp (fdaFile, "none"))
    17051763        {
    17061764            CHECK_ERROR_BREAK (drive, Unmount());
     
    17631821         * First special case 'none' to unmount
    17641822         */
    1765         if (strcmp (cdromFile, "none") == 0)
     1823        if (!strcmp (cdromFile, "none"))
    17661824        {
    17671825            CHECK_ERROR_BREAK (drive, Unmount());
     
    20652123        if (!gMachineDebugger)
    20662124        {
    2067             RTPrintf("Error: No debugger object; -warpdrive %d cannot be executed!\n", u32WarpDrive);
     2125            RTPrintf("Error: No debugger object; --warpdrive %d cannot be executed!\n", u32WarpDrive);
    20682126            goto leave;
    20692127        }
     
    34123470
    34133471#elif RT_OS_OS2
    3414         keycode = Keyevent2KeycodeFallback(ev);
     3472        keycode = Keyevent2KeycodeFallback(ev);
    34153473#endif /* RT_OS_DARWIN */
    34163474    return keycode;
     
    41584216     * Don't update if it didn't change.
    41594217     */
    4160     if (strcmp(szTitle, szPrevTitle) == 0)
     4218    if (!strcmp(szTitle, szPrevTitle))
    41614219        return;
    41624220
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