VirtualBox

Changeset 41741 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Jun 15, 2012 1:50:13 AM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78549
Message:

DISOPPARAM: s/parval/uValue/ + doc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IOMAll.cpp

    r41739 r41741  
    109109        {
    110110            *pcbSize  = 8;
    111             *pu64Data = pParam->parval;
     111            *pu64Data = pParam->uValue;
    112112            return true;
    113113        }
     
    116116        {
    117117            *pcbSize  = 4;
    118             *pu64Data = (uint32_t)pParam->parval;
     118            *pu64Data = (uint32_t)pParam->uValue;
    119119            return true;
    120120        }
     
    123123        {
    124124            *pcbSize  = 2;
    125             *pu64Data = (uint16_t)pParam->parval;
     125            *pu64Data = (uint16_t)pParam->uValue;
    126126            return true;
    127127        }
     
    130130        {
    131131            *pcbSize  = 1;
    132             *pu64Data = (uint8_t)pParam->parval;
     132            *pu64Data = (uint8_t)pParam->uValue;
    133133            return true;
    134134        }
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