mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
Use pulongest in aarch64-linux-tdep.c
I tried a build on macOS today and it failed due to a mismatch between the printf format and the type in aarch64-linux-tdep.c. This patch fixes the problem by using pulongest and %s rather than %ld. gdb/ChangeLog 2018-10-02 Tom Tromey <tom@tromey.com> * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Use pulongest.
This commit is contained in:
parent
53c30c89d1
commit
2398abf8bc
@ -1,3 +1,7 @@
|
||||
2018-10-02 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Use pulongest.
|
||||
|
||||
2018-10-02 John Darrington <john@darrington.wattle.id.au>
|
||||
|
||||
* NEWS: Mention changed commands.
|
||||
|
@ -247,8 +247,8 @@ aarch64_linux_sigframe_init (const struct tramp_frame *self,
|
||||
vq = sve_vq_from_vl (extract_unsigned_integer (buf, 2, byte_order));
|
||||
|
||||
if (vq != tdep->vq)
|
||||
error (_("Invalid vector length in signal frame %d vs %ld."), vq,
|
||||
tdep->vq);
|
||||
error (_("Invalid vector length in signal frame %d vs %s."), vq,
|
||||
pulongest (tdep->vq));
|
||||
|
||||
if (size >= AARCH64_SVE_CONTEXT_SIZE (vq))
|
||||
sve_regs = section + AARCH64_SVE_CONTEXT_REGS_OFFSET;
|
||||
|
Loading…
Reference in New Issue
Block a user