diff options
Diffstat (limited to 'gdb/macroexp.c')
-rw-r--r-- | gdb/macroexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/macroexp.c b/gdb/macroexp.c index 5537d9d..e7a0dad 100644 --- a/gdb/macroexp.c +++ b/gdb/macroexp.c @@ -170,7 +170,7 @@ appendc (struct macro_buffer *b, int c) /* Append the LEN bytes at ADDR to the buffer B. */ static void -appendmem (struct macro_buffer *b, char *addr, int len) +appendmem (struct macro_buffer *b, const char *addr, int len) { int new_len = b->len + len; |