diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-05-30 13:52:31 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-05-30 13:52:31 +0000 |
commit | 564eac4292c0c15307fdd067dbece83f321bc3ad (patch) | |
tree | 69b6f2657a44081937b2e20e6027138b3ad37c4f /gdb/windows-nat.c | |
parent | 4790207643a7583c8f86a5fffc760a03a6c513b2 (diff) | |
download | gdb-564eac4292c0c15307fdd067dbece83f321bc3ad.zip gdb-564eac4292c0c15307fdd067dbece83f321bc3ad.tar.gz gdb-564eac4292c0c15307fdd067dbece83f321bc3ad.tar.bz2 |
windows_delete_thread: Add missing space in cast expression
gdb/ChangeLog:
* windows-nat.c (windows_delete_thread): Add missing space
in cast expression.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |