From a588db63bd94f9c8d43bd33a1dd399ea3bbc8c5b Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 14 Jan 2009 05:27:48 +0000 Subject: * windows-nat.c (handle_unload_dll): Use %p to print the DLL base address instead of casting it to DWORD. --- gdb/ChangeLog | 5 +++++ gdb/windows-nat.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c8d7190..f9c0dc9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-01-14 Joel Brobecker + + * 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 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Do not call get_frame_arch diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 724c18f..7e43f87 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -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; } -- cgit v1.1