VirtualBox

Changeset 98777 in vbox for trunk


Ignore:
Timestamp:
Feb 28, 2023 10:32:48 AM (22 months ago)
Author:
vboxsync
Message:

Guest Control/Main: Compilation fixes when VBOX_WITH_GSTCTL_TOOLBOX_AS_CMDS is set. bugref:9783

File:
1 edited

Legend:

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

    r98775 r98777  
    13641364                PCALLBACKDATA_FS_NOTIFY const pFsNotify = (PCALLBACKDATA_FS_NOTIFY)pEvent->Payload().Raw();
    13651365                AssertPtrReturn(pFsNotify, VERR_INVALID_POINTER);
    1366                 vrcGuest = (int)pFsNotify->rc;
     1366                int vrcGuest = (int)pFsNotify->rc;
    13671367                if (RT_SUCCESS(vrcGuest))
    13681368                {
     
    21162116                PCALLBACKDATA_FS_NOTIFY const pFsNotify = (PCALLBACKDATA_FS_NOTIFY)pEvent->Payload().Raw();
    21172117                AssertPtrReturn(pFsNotify, VERR_INVALID_POINTER);
    2118                 vrcGuest = (int)pFsNotify->rc;
     2118                int vrcGuest = (int)pFsNotify->rc;
    21192119                if (RT_SUCCESS(vrcGuest))
    21202120                {
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