gdb: fix darwin-nat build

There are two errors of this kind:

      CXX    darwin-nat.o
    /Users/smarchi/src/binutils-gdb/gdb/darwin-nat.c:1175:19: error: format specifies type 'unsigned long' but the argument has type 'ULONGEST' (aka 'unsigned long long') [-Werror,-Wformat]
	 ptid.pid (), ptid.tid ());
		      ^~~~~~~~~~~

Fix them by using ptid_t's to_string method.

Change-Id: I52087d5f7ee0fc01ac8b3f87d4db0217cb0d7cc7
This commit is contained in:
Simon Marchi
2021-09-28 19:47:44 -04:00
parent 4872f9a1b5
commit 8c12140439

View File

@ -906,8 +906,8 @@ darwin_nat_target::resume (ptid_t ptid, int step, enum gdb_signal signal)
int nsignal;
inferior_debug
(2, _("darwin_resume: pid=%d, tid=0x%lx, step=%d, signal=%d\n"),
ptid.pid (), ptid.tid (), step, signal);
(2, _("darwin_resume: ptid=%s, step=%d, signal=%d\n"),
ptid.to_string ().c_str (), step, signal);
if (signal == GDB_SIGNAL_0)
nsignal = 0;
@ -1171,8 +1171,8 @@ darwin_nat_target::wait_1 (ptid_t ptid, struct target_waitstatus *status)
darwin_thread_t *thread;
inferior_debug
(2, _("darwin_wait: waiting for a message pid=%d thread=%lx\n"),
ptid.pid (), ptid.tid ());
(2, _("darwin_wait: waiting for a message ptid=%s thread=%lx\n"),
ptid.to_string ().c_str ());
/* Handle fake stop events at first. */
if (darwin_inf_fake_stop != NULL)