diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-03-26 23:40:08 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-03-26 23:40:08 +0000 |
commit | c62fa0e2670b0de9b24c292e0f6dfe539d8ae555 (patch) | |
tree | 380e136f0a707016b31f85c934a91e76e921b205 /gdb/windows-nat.c | |
parent | 38b0ecc5a7e95b19dc1b6aea6f22965ed34d355f (diff) | |
download | gdb-c62fa0e2670b0de9b24c292e0f6dfe539d8ae555.zip gdb-c62fa0e2670b0de9b24c292e0f6dfe539d8ae555.tar.gz gdb-c62fa0e2670b0de9b24c292e0f6dfe539d8ae555.tar.bz2 |
windows-nat.c: Add empty line after local block variable definitions.
gdb/ChangeLog:
* windows-nat.c (handle_output_debug_string): Add empty line
after local block variable definition.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 34e3cc0..24d4b56 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -981,11 +981,13 @@ handle_output_debug_string (struct target_waitstatus *ourstatus) char *p; int sig = strtol (s + sizeof (_CYGWIN_SIGNAL_STRING) - 1, &p, 0); int gotasig = gdb_signal_from_host (sig); + ourstatus->value.sig = gotasig; if (gotasig) { LPCVOID x; SIZE_T n; + ourstatus->kind = TARGET_WAITKIND_STOPPED; retval = strtoul (p, &p, 0); if (!retval) |