* server.c (handle_query): Assign, not compare.

This commit is contained in:
Pedro Alves 2010-03-24 00:14:54 +00:00
parent d50171e439
commit 2280c721d8
2 changed files with 5 additions and 1 deletions

View File

@ -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>
Teach linux gdbserver to step-over-breakpoints.

View File

@ -1471,7 +1471,7 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
unsigned long long crc;
require_running (own_buf);
base == strtoul (own_buf + 5, &comma, 16);
base = strtoul (own_buf + 5, &comma, 16);
if (*comma++ != ',')
{
write_enn (own_buf);