Remove unused variable in windows-nat.c
authorPedro Alves <palves@redhat.com>
Thu, 21 Jul 2016 11:23:48 +0000 (12:23 +0100)
committerPedro Alves <palves@redhat.com>
Thu, 21 Jul 2016 14:30:03 +0000 (15:30 +0100)
Leave the call for side effects.

gdb/ChangeLog:
2016-07-21  Pedro Alves  <palves@redhat.com>

* windows-nat.c (handle_exception): Remove "th".

gdb/ChangeLog
gdb/windows-nat.c

index d074a3d..5eeec97 100644 (file)
@@ -1,5 +1,9 @@
 2016-07-21  Pedro Alves  <palves@redhat.com>
 
+       * windows-nat.c (handle_exception): Remove "th".
+
+2016-07-21  Pedro Alves  <palves@redhat.com>
+
        * varobj.c (varobj_value_get_print_value): Move "gdbarch" to block
        scope that uses it.
 
index 149403a..c95dc9a 100644 (file)
@@ -1014,13 +1014,12 @@ display_selectors (char * args, int from_tty)
 static int
 handle_exception (struct target_waitstatus *ourstatus)
 {
-  windows_thread_info *th;
   DWORD code = current_event.u.Exception.ExceptionRecord.ExceptionCode;
 
   ourstatus->kind = TARGET_WAITKIND_STOPPED;
 
   /* Record the context of the current thread.  */
-  th = thread_rec (current_event.dwThreadId, -1);
+  thread_rec (current_event.dwThreadId, -1);
 
   switch (code)
     {