This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 0f075525afa2bf1f2c7024991a62908688e51889 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Wed Nov 25 14:38:06 2020 +0900 arch/arm/src/arm/arm_prefetchabort.c: Fix a syslog format --- arch/arm/src/arm/arm_prefetchabort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/arm/arm_prefetchabort.c b/arch/arm/src/arm/arm_prefetchabort.c index a745288..64f1cc0 100644 --- a/arch/arm/src/arm/arm_prefetchabort.c +++ b/arch/arm/src/arm/arm_prefetchabort.c @@ -122,7 +122,7 @@ void arm_prefetchabort(uint32_t *regs) else #endif { - _alert("Prefetch abort. PC: %08x\n", regs[REG_PC]); + _alert("Prefetch abort. PC: %08" PRIx32 "\n", regs[REG_PC]); PANIC(); } }