VirtualBox

Changeset 13207 in vbox


Ignore:
Timestamp:
Oct 13, 2008 11:16:04 AM (16 years ago)
Author:
vboxsync
Message:

fix for the fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/GuestProperties/service.cpp

    r13206 r13207  
    794794                             (PFNRT)Service::reqNotify, 7, mpfnHostCallback,
    795795                             mpvHostData, pszName, pszValue,
    796                              (uint32_t) u64Timestamp / 0xffffffff,
    797                              (uint32_t) u64Timestamp % 0xffffffff, pszFlags);
     796                             (uint32_t) (u64Timestamp / 0xffffffff),
     797                             (uint32_t) (u64Timestamp % 0xffffffff), pszFlags);
    798798        if (!RT_SUCCESS(rc)) /* clean up */
    799799        {
     
    842842    HostCallbackData.pcszName     = pszName;
    843843    HostCallbackData.pcszValue    = pszValue;
    844     HostCallbackData.u64Timestamp = u32TimeHigh * 0xffff + u32TimeLow;
     844    HostCallbackData.u64Timestamp = RT_MAKE_U64(u32TimeLow, u32TimeHigh);
    845845    HostCallbackData.pcszFlags    = pszFlags;
    846846    pfnCallback(&HostCallbackData.hdr);
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