mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
* gdb.base/unload.c (main): Make local variable msg const.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2004-08-15 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* gdb.base/unload.c (main): Make local variable msg const.
|
||||||
|
|
||||||
2004-08-15 Michael Chastain <mec.gnu@mindspring.com>
|
2004-08-15 Michael Chastain <mec.gnu@mindspring.com>
|
||||||
|
|
||||||
* gdb.mi/mi-cli.exp: Use gdb_get_line_number. Remove reference
|
* gdb.mi/mi-cli.exp: Use gdb_get_line_number. Remove reference
|
||||||
|
@ -28,7 +28,7 @@ int main()
|
|||||||
void *handle;
|
void *handle;
|
||||||
int (*unloadshr) (int);
|
int (*unloadshr) (int);
|
||||||
int y;
|
int y;
|
||||||
char *msg;
|
const char *msg;
|
||||||
|
|
||||||
handle = dlopen (SHLIB_NAME, RTLD_LAZY);
|
handle = dlopen (SHLIB_NAME, RTLD_LAZY);
|
||||||
msg = dlerror ();
|
msg = dlerror ();
|
||||||
|
Reference in New Issue
Block a user