mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
constify gdbserver/tracepoint.c
gdb/gdbserver/tracepoint.c:3647:7: error: invalid conversion from 'const char*' to 'char*' [-fpermissive] gdb/gdbserver/tracepoint.c:3652:7: error: invalid conversion from 'const char*' to 'char*' [-fpermissive] gdb/gdbserver/tracepoint.c:3657:7: error: invalid conversion from 'const char*' to 'char*' [-fpermissive] gdb/gdbserver 2015-03-20 Pedro Alves <palves@redhat.com> * tracepoint.c (cmd_qtstatus): Make "str" const.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2015-03-20 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* tracepoint.c (cmd_qtstatus): Make "str" const.
|
||||
|
||||
2015-03-20 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* server.c (handle_general_set): Make "req_str" const.
|
||||
|
@ -3615,7 +3615,8 @@ static void
|
||||
cmd_qtstatus (char *packet)
|
||||
{
|
||||
char *stop_reason_rsp = NULL;
|
||||
char *buf1, *buf2, *buf3, *str;
|
||||
char *buf1, *buf2, *buf3;
|
||||
const char *str;
|
||||
int slen;
|
||||
|
||||
/* Translate the plain text of the notes back into hex for
|
||||
|
Reference in New Issue
Block a user