constify remote-m32r-sdi.c

gdb:

2015-03-20  Pedro Alves  <palves@redhat.com>

	* remote-m32r-sdi.c (m32r_open): Make "port_str" const.
This commit is contained in:
Pedro Alves 2015-03-09 11:58:19 +00:00 committed by Yao Qi
parent c32ed3ef80
commit f6fc92f671
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-03-20 Pedro Alves <palves@redhat.com>
* remote-m32r-sdi.c (m32r_open): Make "port_str" const.
2015-03-20 Pedro Alves <palves@redhat.com>
* nto-tdep.c (nto_find_and_open_solib): Make "endian" const.

View File

@ -362,7 +362,8 @@ m32r_open (const char *args, int from_tty)
{
struct hostent *host_ent;
struct sockaddr_in server_addr;
char *port_str, hostname[256];
char hostname[256];
const char *port_str;
int port;
int i, n;
int yes = 1;