arch_user_debugger: Restore the use of size_t for dr7.

The prior change broke the build with some cryptic "invalid
instruction mov" messages. So it must have been correct before.
This commit is contained in:
Augustin Cavalier
2019-07-18 20:36:13 -04:00
parent c6fd6cbba4
commit 1f39d6dd11
@@ -101,7 +101,7 @@ struct arch_breakpoint {
struct arch_team_debug_info {
struct arch_breakpoint breakpoints[X86_BREAKPOINT_COUNT];
uint32_t dr7; // debug control register DR7
size_t dr7; // debug control register DR7
};
struct arch_thread_debug_info {