VirtualBox

Changeset 56009 in vbox for trunk/include/iprt


Ignore:
Timestamp:
May 21, 2015 4:34:04 PM (10 years ago)
Author:
vboxsync
Message:

IPRT/cdefs.h: Typos.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/cdefs.h

    r55957 r56009  
    16971697# define RT_LO_U8(a)                            ( (uint8_t)(a) )
    16981698#endif
    1699 /** @def RT_HI_U16
    1700  * Gets the high uint16_t of a uint32_t or something equivalent). */
     1699/** @def RT_HI_U8
     1700 * Gets the high uint8_t of a uint16_t or something equivalent. */
    17011701#ifdef __GNUC__
    17021702# define RT_HI_U8(a)    __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint16_t)); (uint8_t)((a) >> 8); })
     
    17131713#endif
    17141714/** @def RT_HI_U16
    1715  * Gets the high uint16_t of a uint32_t or something equivalent). */
     1715 * Gets the high uint16_t of a uint32_t or something equivalent. */
    17161716#ifdef __GNUC__
    17171717# define RT_HI_U16(a)   __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint32_t)); (uint16_t)((a) >> 16); })
     
    17281728#endif
    17291729/** @def RT_HI_U32
    1730  * Gets the high uint32_t of a uint64_t or something equivalent). */
     1730 * Gets the high uint32_t of a uint64_t or something equivalent. */
    17311731#ifdef __GNUC__
    17321732# define RT_HI_U32(a)   __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint64_t)); (uint32_t)((a) >> 32); })
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