VirtualBox

Changeset 107644 in vbox for trunk


Ignore:
Timestamp:
Jan 10, 2025 1:16:41 PM (8 days ago)
Author:
vboxsync
Message:

src/VBox/Main/src-client/GuestFileImpl.cpp: Fixed warnings found by Parfait (change of signedness on implicit conversion). jiraref:VBP-1424

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestFileImpl.cpp

    r107643 r107644  
    583583            BYTE const * const pbData = (BYTE const *)pSvcCbData->mpaParms[idx].u.pointer.addr;
    584584            uint32_t const     cbRead = pSvcCbData->mpaParms[idx].u.pointer.size;
    585             int64_t            offNew = (int64_t)pSvcCbData->mpaParms[idx + 1].u.uint64;
    586             Log3ThisFunc(("cbRead=%RU32 offNew=%RI64 (%#RX64)\n", cbRead, offNew, offNew));
     585            uint64_t           offNew = (int64_t)pSvcCbData->mpaParms[idx + 1].u.uint64;
     586            Log3ThisFunc(("cbRead=%RU32 offNew=%RU64 (%#RX64)\n", cbRead, offNew, offNew));
    587587
    588588            AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
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