gdb/gdbserver/

* tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
	pulongest.
This commit is contained in:
Yao Qi 2013-02-28 01:21:08 +00:00
parent 1c942fb948
commit 736cd58526
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-02-28 Yao Qi <yao@codesourcery.com>
* tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
pulongest.
2013-02-27 Jiong Wang <jiwang@tilera.com>
* Makefile.in (clean): Remove reg-tilegx.c, reg-tilegx32.c.

View File

@ -3969,7 +3969,7 @@ cmd_qtbuffer (char *own_buf)
unpack_varlen_hex (packet, &num);
trace_debug ("Want to get trace buffer, %d bytes at offset 0x%s",
(int) num, pulongest (offset));
(int) num, phex_nz (offset, 0));
tot = (trace_buffer_hi - trace_buffer_lo) - free_space ();