mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-24 18:25:10 +00:00
Explicitly use the ULL suffix to specify a large constant.
This hopefully fixes the ARM build error. TBR = wad@chromium.org Review URL: http://codereview.chromium.org/1591001
This commit is contained in:
@@ -16,7 +16,7 @@
|
|||||||
#include "utility.h"
|
#include "utility.h"
|
||||||
|
|
||||||
/* Choose a firmware size greater than the range of 32-bits unsigned. */
|
/* Choose a firmware size greater than the range of 32-bits unsigned. */
|
||||||
#define BIG_FIRMWARE_SIZE ((uint64_t) 0x100000000)
|
#define BIG_FIRMWARE_SIZE ((uint64_t) 0x100000000ULL)
|
||||||
|
|
||||||
#define ROOT_KEY_BASE_NAME "testkeys/key_rsa8192"
|
#define ROOT_KEY_BASE_NAME "testkeys/key_rsa8192"
|
||||||
#define FIRMWARE_KEY_BASE_NAME "testkeys/key_rsa1024"
|
#define FIRMWARE_KEY_BASE_NAME "testkeys/key_rsa1024"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
#include "utility.h"
|
#include "utility.h"
|
||||||
|
|
||||||
/* Choose a kernel size greater than the range of 32-bits unsigned. */
|
/* Choose a kernel size greater than the range of 32-bits unsigned. */
|
||||||
#define BIG_KERNEL_SIZE ((uint64_t) 0x100000000)
|
#define BIG_KERNEL_SIZE ((uint64_t) 0x100000000ULL)
|
||||||
|
|
||||||
#define FIRMWARE_KEY_BASE_NAME "testkeys/key_rsa2048"
|
#define FIRMWARE_KEY_BASE_NAME "testkeys/key_rsa2048"
|
||||||
#define KERNEL_KEY_BASE_NAME "testkeys/key_rsa1024"
|
#define KERNEL_KEY_BASE_NAME "testkeys/key_rsa1024"
|
||||||
|
|||||||
Reference in New Issue
Block a user