+Thu Aug 3 15:02:23 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * remote-mips.c (mips_expect, mips_expect_timeout, common_open,
+ fputs_readable): Make string pointer arguments constant.
+
Thu Aug 3 18:39:10 2000 Andrew Cagney <cagney@b1.cygnus.com>
* MAINTAINERS, TODO: Tweeks.
^x notation or in hex. */
static void
-fputs_readable (char *string, struct ui_file *file)
+fputs_readable (const char *string, struct ui_file *file)
{
int c;
*/
int
-mips_expect_timeout (char *string, int timeout)
+mips_expect_timeout (const char *string, int timeout)
{
- char *p = string;
+ const char *p = string;
if (remote_debug)
{
*/
int
-mips_expect (char *string)
+mips_expect (const char *string)
{
return mips_expect_timeout (string, 2);
}
/* Open a connection to the remote board. */
static void
common_open (struct target_ops *ops, char *name, int from_tty,
- enum mips_monitor_type new_monitor, char *new_monitor_prompt)
+ enum mips_monitor_type new_monitor,
+ const char *new_monitor_prompt)
{
char *ptype;
char *serial_port_name;