VirtualBox

Changeset 70021 in vbox


Ignore:
Timestamp:
Dec 8, 2017 12:17:09 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119551
Message:

Audio/Main: Use uint64_t for fDebugEnabled flag, as we're writing integers instead of booleans here.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r70015 r70021  
    28392839
    28402840            GetExtraDataBoth(virtualBox, pMachine, "VBoxInternal2/Audio/Debug/Enabled", &strTmp);
    2841             const bool fDebugEnabled = strTmp.equalsIgnoreCase("true") || strTmp.equalsIgnoreCase("1");
     2841            const uint64_t fDebugEnabled = (strTmp.equalsIgnoreCase("true") || strTmp.equalsIgnoreCase("1")) ? 1 : 0;
    28422842
    28432843            Utf8Str strDebugPathOut;
Note: See TracChangeset for help on using the changeset viewer.

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