mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 12:53:17 +08:00
* windows-nat.c (handle_unload_dll): Use %p to print the DLL
base address instead of casting it to DWORD.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2009-01-14 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* windows-nat.c (handle_unload_dll): Use %p to print the DLL
|
||||
base address instead of casting it to DWORD.
|
||||
|
||||
2009-01-13 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch
|
||||
|
@ -761,7 +761,7 @@ handle_unload_dll (void *dummy)
|
||||
return 1;
|
||||
}
|
||||
|
||||
error (_("Error: dll starting at 0x%lx not found."), (DWORD) lpBaseOfDll);
|
||||
error (_("Error: dll starting at %p not found."), lpBaseOfDll);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user