powerpc/beatnik/start/bspstart.c: Correct printf() format specifier

Use correct specifier for uintptr_t.
This commit is contained in:
Joel Sherrill
2025-07-10 16:56:56 -05:00
committed by Gedare Bloom
parent 2b06029e7d
commit f12e733097

View File

@@ -22,6 +22,8 @@
*
* T. Straumann: 2005-2007; stolen again for 'beatnik'...
*/
#include <inttypes.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
@@ -315,7 +317,7 @@ static void bsp_early( void )
#ifdef SHOW_MORE_INIT_SETTINGS
printk(
"Configuration.work_space_size = %lx\n",
"Configuration.work_space_size = %" PRIxPTR "\n",
rtems_configuration_get_work_space_size()
);
#endif