summaryrefslogtreecommitdiff
path: root/gdb/remote-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-utils.c')
-rw-r--r--gdb/remote-utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/remote-utils.c b/gdb/remote-utils.c
index ba150e34d5d..3c843f94c6f 100644
--- a/gdb/remote-utils.c
+++ b/gdb/remote-utils.c
@@ -77,7 +77,7 @@ struct _sr_settings sr_settings =
struct gr_settings *gr_settings = NULL;
static void usage (char *, char *);
-static void sr_com (char *, int);
+static void sr_com (const char *, int);
static void
usage (char *proto, char *junk)
@@ -277,7 +277,7 @@ sr_expect (char *string)
}
void
-sr_write (char *a, int l)
+sr_write (const char *a, int l)
{
int i;
@@ -292,7 +292,7 @@ sr_write (char *a, int l)
}
void
-sr_write_cr (char *s)
+sr_write_cr (const char *s)
{
sr_write (s, strlen (s));
sr_write ("\r", 1);
@@ -376,7 +376,7 @@ sr_get_hex_word (void)
FIXME: Can't handle commands that take input. */
static void
-sr_com (char *args, int fromtty)
+sr_com (const char *args, int fromtty)
{
sr_check_open ();