summaryrefslogtreecommitdiff
path: root/gdb/gdbserver/win32-low.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2007-05-10 20:25:01 +0000
committerPedro Alves <palves@redhat.com>2007-05-10 20:25:01 +0000
commitf72f3e600b6c364a35c25fd4dd7ef409447da39a (patch)
tree3c67e660582945286e89ce1f1a334284f3d2450d /gdb/gdbserver/win32-low.c
parent4d67a4d3039046c857ae3aa5313b5b6f2ee7c22a (diff)
downloadbinutils-gdb-f72f3e600b6c364a35c25fd4dd7ef409447da39a.tar.gz
* win32-low.c (win32_wait): Don't use WSTOPSIG.
Diffstat (limited to 'gdb/gdbserver/win32-low.c')
-rw-r--r--gdb/gdbserver/win32-low.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/gdb/gdbserver/win32-low.c b/gdb/gdbserver/win32-low.c
index 568b3ae6b9d..a0380ca1bac 100644
--- a/gdb/gdbserver/win32-low.c
+++ b/gdb/gdbserver/win32-low.c
@@ -1092,13 +1092,8 @@ win32_wait (char *status)
}
else if (our_status.kind == TARGET_WAITKIND_STOPPED)
{
-#ifndef __MINGW32CE__
- OUTMSG2 (("Child Stopped with signal = %x \n",
- WSTOPSIG (our_status.value.sig)));
-#else
- OUTMSG2 (("Child Stopped with signal = %x \n",
+ OUTMSG2 (("Child Stopped with signal = %d \n",
our_status.value.sig));
-#endif
*status = 'T';