mirror of
https://github.com/apache/nuttx.git
synced 2026-09-20 12:58:29 +08:00
libs/libc/spawn/lib_psa_dump.c: Fix a syslog format
This commit is contained in:
committed by
Xiang Xiao
parent
0a4ee70f39
commit
9579fe1444
@@ -49,6 +49,7 @@
|
||||
#define CONFIG_DEBUG_INFO 1
|
||||
|
||||
#include <spawn.h>
|
||||
#include <stdint.h>
|
||||
#include <debug.h>
|
||||
|
||||
#ifdef CONFIG_DEBUG_FEATURES
|
||||
@@ -129,7 +130,7 @@ void posix_spawnattr_dump(posix_spawnattr_t *attr)
|
||||
_err(" Unrecognized\n");
|
||||
}
|
||||
|
||||
_err(" sigmask: %08x\n", attr->sigmask);
|
||||
_err(" sigmask: %08jx\n", (uintmax_t)attr->sigmask);
|
||||
#endif /* CONFIG_DEBUG_ERROR */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user