cpukit/libdebugger: Use uintptr_t for pointers

Use uintptr_t instead of DB_UINT when the variable in question describes
a pointer.
This commit is contained in:
Kinsey Moore
2021-10-15 19:18:02 -05:00
committed by Joel Sherrill
parent a678d1a99c
commit 102261043a
5 changed files with 20 additions and 20 deletions

View File

@@ -315,7 +315,7 @@ rtems_debugger_target_exception(CPU_Exception_frame* frame)
Thread_Control* thread = _Thread_Get_executing();
const rtems_id tid = thread->Object.id;
rtems_id* excludes;
DB_UINT pc;
uintptr_t pc;
const rtems_debugger_thread_stepper* stepper;
rtems_debugger_exception target_exception;
size_t i;