[efi] Add missing "ULL" suffix on 64-bit constant

Older versions of gcc complain if this suffix is missing.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2015-08-03 13:05:21 +01:00
parent c6b299df20
commit 989fe14ccd

View File

@@ -44,7 +44,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#define WATCHDOG_TIMEOUT_SECS ( 5 * 60 ) #define WATCHDOG_TIMEOUT_SECS ( 5 * 60 )
/** Watchdog code (to be logged on watchdog timeout) */ /** Watchdog code (to be logged on watchdog timeout) */
#define WATCHDOG_CODE 0x6950584544454144 #define WATCHDOG_CODE 0x6950584544454144ULL
/** Watchdog data (to be logged on watchdog timeout) */ /** Watchdog data (to be logged on watchdog timeout) */
#define WATCHDOG_DATA L"iPXE"; #define WATCHDOG_DATA L"iPXE";