VirtualBox

Ignore:
Timestamp:
Jan 21, 2010 10:20:58 AM (15 years ago)
Author:
vboxsync
Message:

Runtime/RTFileIoCtl: fixed prototype (iRequest => ulRequest)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp

    r25642 r25953  
    587587
    588588
    589 RTR3DECL(int) RTFileIoCtl(RTFILE File, int iRequest, void *pvData, unsigned cbData, int *piRet)
    590 {
    591     int rc = ioctl((int)File, iRequest, pvData);
     589RTR3DECL(int) RTFileIoCtl(RTFILE File, unsigned long ulRequest, void *pvData, unsigned cbData, int *piRet)
     590{
     591    int rc = ioctl((int)File, ulRequest, pvData);
    592592    if (piRet)
    593593        *piRet = 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