LibC: Use correct inttypes.h format strings on Aarch64

Similarly to x86_64, Aarch64 is LP64, so its `uint64_t` type is
`unsigned long`.

Fixes a bunch of compiler warnings when compiling the LLVM runtime
libraries for the aarch64-pc-serenity target.
This commit is contained in:
Daniel Bertalan 2022-04-14 09:40:08 +02:00 committed by Brian Gianforcaro
parent 95cff1133d
commit bb92991408
Notes: sideshowbarker 2024-07-17 11:34:47 +09:00

View file

@ -11,7 +11,7 @@
__BEGIN_DECLS
#ifndef __x86_64__
#ifdef __i386__
# define __PRI64_PREFIX "ll"
# define __PRIPTR_PREFIX
#else