VirtualBox

Changeset 82013 in vbox for trunk/src/VBox/Devices


Ignore:
Timestamp:
Nov 20, 2019 8:39:55 AM (5 years ago)
Author:
vboxsync
Message:

DevACPI: Build fixes. bugref:9218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevACPI.cpp

    r82012 r82013  
    922922        rc = PDMDevHlpVMSuspendSaveAndPowerOff(pDevIns);
    923923        if (rc != VERR_NOT_SUPPORTED)
    924             AssertRC(rc);
     924            AssertRC(VBOXSTRICTRC_VAL(rc));
    925925        else
    926926        {
    927927            LogRel(("ACPI: PDMDevHlpVMSuspendSaveAndPowerOff is not supported, falling back to suspend-only\n"));
    928928            rc = PDMDevHlpVMSuspend(pDevIns);
    929             AssertRC(rc);
     929            AssertRC(VBOXSTRICTRC_VAL(rc));
    930930        }
    931931    }
     
    933933    {
    934934        rc = PDMDevHlpVMSuspend(pDevIns);
    935         AssertRC(rc);
     935        AssertRC(VBOXSTRICTRC_VAL(rc));
    936936    }
    937937    return rc;
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