diff options
author | Pedro Alves <palves@redhat.com> | 2015-03-09 11:58:23 +0000 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-03-20 17:39:29 +0000 |
commit | 2e7bf1d7210ee79b93ba9ce4462e22e71097a102 (patch) | |
tree | 64359f543fb22dd0d5e4eb898cff8d5cf50f1b52 /gdb/i386-sol2-tdep.c | |
parent | 7a26bd4d83e5549137943de5f2c7b1ae90821093 (diff) | |
download | gdb-2e7bf1d7210ee79b93ba9ce4462e22e71097a102.zip gdb-2e7bf1d7210ee79b93ba9ce4462e22e71097a102.tar.gz gdb-2e7bf1d7210ee79b93ba9ce4462e22e71097a102.tar.bz2 |
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.
Diffstat (limited to 'gdb/i386-sol2-tdep.c')
-rw-r--r-- | gdb/i386-sol2-tdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/i386-sol2-tdep.c b/gdb/i386-sol2-tdep.c index af783df..59f9be7 100644 --- a/gdb/i386-sol2-tdep.c +++ b/gdb/i386-sol2-tdep.c @@ -80,9 +80,10 @@ i386_sol2_mcontext_addr (struct frame_info *this_frame) static const char * i386_sol2_static_transform_name (const char *name) { - char *p; if (name[0] == '.') { + const char *p; + /* For file-local statics there will be a period, a bunch of junk (the contents of which match a string given in the N_OPT), a period and the name. For function-local statics |