This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[OB/COMMIT] windows_delete_thread: Add missing space in cast expression


Hello,

While investigating a problem on x86_64-windows, I noticed a minor
Coding Style violation.  Fixed thusly.

gdb/ChangeLog:

	* windows-nat.c (windows_delete_thread): Add missing space
	in cast expression.

Checked in.

---
 gdb/ChangeLog     |    5 +++++
 gdb/windows-nat.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3921b17..6a528a8 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2013-05-30  Joel Brobecker  <brobecker@adacore.com>
+
+	* windows-nat.c (windows_delete_thread): Add missing space
+	in cast expression.
+
 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
 
 	* inferior.c (top level): Include tilde.h.
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c
index db3188b..8320d27 100644
--- a/gdb/windows-nat.c
+++ b/gdb/windows-nat.c
@@ -399,7 +399,7 @@ windows_delete_thread (ptid_t ptid, DWORD exit_code)
     printf_unfiltered ("[Deleting %s]\n", target_pid_to_str (ptid));
   else if (print_thread_events && id != main_thread_id)
     printf_unfiltered (_("[%s exited with code %u]\n"),
-		       target_pid_to_str (ptid), (unsigned)exit_code);
+		       target_pid_to_str (ptid), (unsigned) exit_code);
   delete_thread (ptid);
 
   for (th = &thread_head;
-- 
1.7.10.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]