mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
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:
@ -1492,7 +1492,7 @@ windows_nat_target::get_windows_debug_event (int pid,
|
||||
|
||||
ptid_t ptid (current_event.dwProcessId, thread_id);
|
||||
windows_thread_info *th = thread_rec (ptid, INVALIDATE_CONTEXT);
|
||||
th->reload_context = 1;
|
||||
th->reload_context = true;
|
||||
|
||||
return thread_id;
|
||||
}
|
||||
|
Reference in New Issue
Block a user