1
Fork 0
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:
Mikael Djurfeldt 2000-06-12 18:13:38 +00:00
parent 6f760c1dc8
commit a57c1cc7ee

View file

@ -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)