mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-08 18:41:22 +00:00
libc: Fix SIZE_MAX on AArch32
SIZE_MAX was mistakenly redefined from UINT32_MAX to UINT64_MAX on AArch32 when the arch-specific headers were merged. This value is not currently used by upstream TF-A source code, so no functionality should be affected. Change-Id: I2acf7f8736423697c7377e8ed4b08843ced26e66 Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
parent
255b380afa
commit
ae4a90f2ae
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@
|
|||
#define PTRDIFF_MIN LONG_MIN
|
||||
#define PTRDIFF_MAX LONG_MAX
|
||||
|
||||
#define SIZE_MAX UINT64_MAX
|
||||
#define SIZE_MAX ULONG_MAX
|
||||
|
||||
#define INT8_C(x) x
|
||||
#define INT16_C(x) x
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue