diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-01-09 10:58:26 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-01-09 10:58:26 +0000 |
commit | d3653bf63512b822238f8b0ccc812353f26cab33 (patch) | |
tree | 55dd9086a78cb316e2447c26facbc45dd5314c5e /gdb/ChangeLog | |
parent | 308a8808668c1edec499d244773b86761b7c873c (diff) | |
download | gdb-d3653bf63512b822238f8b0ccc812353f26cab33.zip gdb-d3653bf63512b822238f8b0ccc812353f26cab33.tar.gz gdb-d3653bf63512b822238f8b0ccc812353f26cab33.tar.bz2 |
* win32-nat.c (get_module_name): Change the type of parameter
"base_address" to LPVOID. Remove unnecessary cast.
(struct lm_info): Change type of load_addr to LPVOID.
(win32_make_so): Change the type of parameter "load_addr"
to LPVOID. Remove some unnecessary casts.
(handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID.
(win32_xfer_shared_libraries): Add missing cast.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8015767..3abe002 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,15 @@ 2009-01-09 Joel Brobecker <brobecker@adacore.com> + * win32-nat.c (get_module_name): Change the type of parameter + "base_address" to LPVOID. Remove unnecessary cast. + (struct lm_info): Change type of load_addr to LPVOID. + (win32_make_so): Change the type of parameter "load_addr" + to LPVOID. Remove some unnecessary casts. + (handle_unload_dll): Change the type of "lpBaseOfDll" to LPVOID. + (win32_xfer_shared_libraries): Add missing cast. + +2009-01-09 Joel Brobecker <brobecker@adacore.com> + * win32-nat.c (has_detach_ability, set_process_privilege): Cast the result of GetProcAddress to (void *) to avoid a compilation warning. |