mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
Fix typo
gdb/gdbserver: 2015-09-15 Yao Qi <yao.qi@linaro.org> * server.c (handle_query): Check string comparison using "else if" instead of "if".
This commit is contained in:
parent
d15dcecdee
commit
7c5d0fad2e
@ -1,3 +1,8 @@
|
||||
2015-09-15 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* server.c (handle_query): Check string comparison using
|
||||
"else if" instead of "if".
|
||||
|
||||
2015-09-15 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* server.c (vCont_supported): New global variable.
|
||||
|
@ -2117,7 +2117,7 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
||||
if (target_supports_vfork_events ())
|
||||
report_vfork_events = 1;
|
||||
}
|
||||
if (strcmp (p, "exec-events+") == 0)
|
||||
else if (strcmp (p, "exec-events+") == 0)
|
||||
{
|
||||
/* GDB supports and wants exec events if possible. */
|
||||
if (target_supports_exec_events ())
|
||||
|
Loading…
Reference in New Issue
Block a user