mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
* server.c (handle_query): Assign, not compare.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2010-03-24 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
* server.c (handle_query): Assign, not compare.
|
||||||
|
|
||||||
2010-03-24 Pedro Alves <pedro@codesourcery.com>
|
2010-03-24 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
Teach linux gdbserver to step-over-breakpoints.
|
Teach linux gdbserver to step-over-breakpoints.
|
||||||
|
@ -1471,7 +1471,7 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
|||||||
unsigned long long crc;
|
unsigned long long crc;
|
||||||
|
|
||||||
require_running (own_buf);
|
require_running (own_buf);
|
||||||
base == strtoul (own_buf + 5, &comma, 16);
|
base = strtoul (own_buf + 5, &comma, 16);
|
||||||
if (*comma++ != ',')
|
if (*comma++ != ',')
|
||||||
{
|
{
|
||||||
write_enn (own_buf);
|
write_enn (own_buf);
|
||||||
|
Reference in New Issue
Block a user