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.
This commit is contained in:
Andrew Cagney 2000-08-03 08:41:23 +00:00
parent e255d535bb
commit 98691afe51
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
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.

View File

@ -526,7 +526,7 @@ fputc_readable (int ch, struct ui_file *file)
^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;
@ -540,9 +540,9 @@ fputs_readable (char *string, struct ui_file *file)
*/
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)
{
@ -596,7 +596,7 @@ mips_expect_timeout (char *string, int timeout)
*/
int
mips_expect (char *string)
mips_expect (const char *string)
{
return mips_expect_timeout (string, 2);
}
@ -1499,7 +1499,8 @@ mips_initialize (void)
/* 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;