GCC 13 warns about a the wrong format specifier when building for some platforms:
./hwpf/fapi2/include/plat/target.H:449:57: warning: format '%lX' expects
argument of type 'long unsigned int', but argument 4 has type
'pdbg_target*' [-Wformat=]
Use %p to print a pointer value, as this will work on arm/x86/ppc64 no matter the size of a pointer.
GCC 13 warns about a the wrong format specifier when building for some platforms:
./hwpf/fapi2/include/plat/target.H:449:57: warning: format '%lX' expects argument of type 'long unsigned int', but argument 4 has type 'pdbg_target*' [-Wformat=]
Use %p to print a pointer value, as this will work on arm/x86/ppc64 no matter the size of a pointer.
Fixes https://github.com/open-power/pub-ekb/issues/2