VirtualBox

Changeset 26525 in vbox for trunk/src/VBox/Runtime/r3/win


Ignore:
Timestamp:
Feb 15, 2010 3:33:33 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
57696
Message:

Runtime: win.amd64 warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/win/fileaio-win.cpp

    r25727 r26525  
    356356        BOOL fSucceeded;
    357357
     358        Assert(pReqInt->cbTransfer == (DWORD)pReqInt->cbTransfer);
    358359        if (pReqInt->enmTransferDirection == TRANSFERDIRECTION_READ)
    359360        {
    360361            fSucceeded = ReadFile(pReqInt->hFile, pReqInt->pvBuf,
    361                                   pReqInt->cbTransfer, NULL,
     362                                  (DWORD)pReqInt->cbTransfer, NULL,
    362363                                  &pReqInt->Overlapped);
    363364        }
     
    365366        {
    366367            fSucceeded = WriteFile(pReqInt->hFile, pReqInt->pvBuf,
    367                                    pReqInt->cbTransfer, NULL,
     368                                   (DWORD)pReqInt->cbTransfer, NULL,
    368369                                   &pReqInt->Overlapped);
    369370        }
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