debug_engine: Fix a few typos (#1261)

no functional changes are intended.

cf.
https://sourceware.org/gdb/onlinedocs/gdb/General-Query-Packets.html#General-Query-Packets
This commit is contained in:
YAMAMOTO Takashi
2022-06-30 16:45:46 +09:00
committed by GitHub
parent 2b49a0b817
commit 653efecd02
5 changed files with 15 additions and 15 deletions

View File

@ -19,8 +19,8 @@ struct packet_handler_elem {
#define DEL_HANDLER(r, h) [r] = { .request = r, .handler = h }
static struct packet_handler_elem packet_handler_table[255] = {
DEL_HANDLER('Q', handle_generay_set),
DEL_HANDLER('q', handle_generay_query),
DEL_HANDLER('Q', handle_general_set),
DEL_HANDLER('q', handle_general_query),
DEL_HANDLER('v', handle_v_packet),
DEL_HANDLER('?', handle_threadstop_request),
DEL_HANDLER('H', handle_set_current_thread),