diff options
| author | Michael Brown | 2015-08-03 14:05:21 +0200 |
|---|---|---|
| committer | Michael Brown | 2015-08-03 14:05:21 +0200 |
| commit | 989fe14ccd35454fc14b7717106c8d65c33ba1ea (patch) | |
| tree | 803e68a8c8a907ca61114a24c23417cd50fc70e0 | |
| parent | [efi] Hold off watchdog timer while running (diff) | |
| download | ipxe-989fe14ccd35454fc14b7717106c8d65c33ba1ea.tar.gz ipxe-989fe14ccd35454fc14b7717106c8d65c33ba1ea.tar.xz ipxe-989fe14ccd35454fc14b7717106c8d65c33ba1ea.zip | |
[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>
| -rw-r--r-- | src/interface/efi/efi_watchdog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface/efi/efi_watchdog.c b/src/interface/efi/efi_watchdog.c index 2876dc022..7061f81d8 100644 --- a/src/interface/efi/efi_watchdog.c +++ b/src/interface/efi/efi_watchdog.c @@ -44,7 +44,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #define WATCHDOG_TIMEOUT_SECS ( 5 * 60 ) /** Watchdog code (to be logged on watchdog timeout) */ -#define WATCHDOG_CODE 0x6950584544454144 +#define WATCHDOG_CODE 0x6950584544454144ULL /** Watchdog data (to be logged on watchdog timeout) */ #define WATCHDOG_DATA L"iPXE"; |
