Minor boolean fix in windows-nat.c

I noticed a spot in windows-nat.c that used '1' rather than the more
appropriate 'true'.  This patch fixes it.
This commit is contained in:
Tom Tromey 2021-10-04 13:13:48 -06:00
parent 77252bf26e
commit e133de4984

View file

@ -1492,7 +1492,7 @@ windows_nat_target::get_windows_debug_event (int pid,
ptid_t ptid (current_event.dwProcessId, thread_id); ptid_t ptid (current_event.dwProcessId, thread_id);
windows_thread_info *th = thread_rec (ptid, INVALIDATE_CONTEXT); windows_thread_info *th = thread_rec (ptid, INVALIDATE_CONTEXT);
th->reload_context = 1; th->reload_context = true;
return thread_id; return thread_id;
} }