Changeset 81717 in vbox
- Timestamp:
- Nov 6, 2019 4:19:09 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/fsw_hfs.h
r76553 r81717 40 40 #include "iprt/asm.h" /* endian conversion */ 41 41 42 #include <Library/BaseLib.h> 42 43 43 44 //! Block size for HFS volumes. … … 150 151 be64_to_cpu(fsw_u64 x) 151 152 { 152 return RT_BE2H_U64(x); 153 #ifdef RT_LITTLE_ENDIAN 154 return SwapBytes64(x); 155 #else 156 return x; 157 #endif 153 158 } 154 159
Note:
See TracChangeset
for help on using the changeset viewer.