mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
Fix incorrect status code returned by VBESetPowerState() in the VBE miniport driver. - VBESetPowerState() returned `VBE_SUCCESS` (`0x4F`, raw VESA BIOS AL success code) instead of `NO_ERROR` on success, so callers checking for `NO_ERROR` would treat every successful DPMS power-state change as a failure. Change it to `NO_ERROR`. - Change annotations to SAL2 in the source and header.