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 59e0cf23fc83b95bcc04719bd88e668e9f9c8a73 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Wed Nov 25 14:38:52 2020 +0900 arch/arm/src/arm/arm_syscall.c: Fix a syslog format --- arch/arm/src/arm/arm_syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/arm/arm_syscall.c b/arch/arm/src/arm/arm_syscall.c index 536f7c2..dc4d0d6 100644 --- a/arch/arm/src/arm/arm_syscall.c +++ b/arch/arm/src/arm/arm_syscall.c @@ -66,7 +66,7 @@ void arm_syscall(uint32_t *regs) { - _alert("Syscall from 0x%x\n", regs[REG_PC]); + _alert("Syscall from 0x%" PRIx32 "\n", regs[REG_PC]); CURRENT_REGS = regs; PANIC(); }