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:
parent
77252bf26e
commit
e133de4984
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue