windows_delete_thread: Add missing space in cast expression

gdb/ChangeLog:

	* windows-nat.c (windows_delete_thread): Add missing space
	in cast expression.
This commit is contained in:
Joel Brobecker 2013-05-30 13:52:31 +00:00
parent 4790207643
commit 564eac4292
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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;