diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-12 18:13:38 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-06-12 18:13:38 +0000 |
commit | a57c1cc7ee84f3d900a597c4cbf0a817ddbb52c2 (patch) | |
tree | 105d9d0268b7b9ddf9824bfe84bbd80b3c3201a5 /libguile/gdbint.c | |
parent | 6f760c1dc814e872b530cf5ff14e88eda0a1d6f1 (diff) | |
download | guile-a57c1cc7ee84f3d900a597c4cbf0a817ddbb52c2.tar.gz |
* gdbint.c (SEND_STRING): Cast argument to char pointer.
Diffstat (limited to 'libguile/gdbint.c')
-rw-r--r-- | libguile/gdbint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gdbint.c b/libguile/gdbint.c index 1e459e511..19d7d145b 100644 --- a/libguile/gdbint.c +++ b/libguile/gdbint.c @@ -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) |