mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
* gdbint.c (SEND_STRING): Cast argument to char pointer.
This commit is contained in:
parent
6f760c1dc8
commit
a57c1cc7ee
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ do { \
|
|||
|
||||
#define SEND_STRING(str) \
|
||||
do { \
|
||||
gdb_output = str; \
|
||||
gdb_output_length = strlen (str); \
|
||||
gdb_output = (char *) (str); \
|
||||
gdb_output_length = strlen ((const char *) (str)); \
|
||||
} while (0)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue