forked from Imagelibrary/binutils-gdb
constify i386-sol2-tdep.c and machoread.c
/home/pedro/gdb/mygit/src/gdb/i386-sol2-tdep.c: In function ‘const char* i386_sol2_static_transform_name(const char*)’:
/home/pedro/gdb/mygit/src/gdb/i386-sol2-tdep.c:93:29: error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive]
p = strrchr (name, '.');
^
gdb:
2015-03-20 Pedro Alves <palves@redhat.com>
* i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to
inner block and make it const.
* machoread.c (get_archive_prefix_len): Make "lparen" const.
This commit is contained in:
@@ -343,7 +343,7 @@ macho_symtab_read (struct objfile *objfile,
|
||||
static int
|
||||
get_archive_prefix_len (const char *name)
|
||||
{
|
||||
char *lparen;
|
||||
const char *lparen;
|
||||
int name_len = strlen (name);
|
||||
|
||||
if (name_len == 0 || name[name_len - 1] != ')')
|
||||
|
||||
Reference in New Issue
Block a user