sched: Remove the unnecessary cast from pid_t to int

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2023-06-19 04:20:04 +08:00
committed by Petro Karashchenko
parent 07b0cd1cba
commit a8e0a5faa4
8 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -430,7 +430,7 @@ static void memdump_handler(FAR void *ptr, size_t size, int used,
# endif
syslog(LOG_INFO, "%6d%12zu%12lu%*p%s\n",
(int)buf->pid, size, buf->seqno, MM_PTR_FMT_WIDTH,
buf->pid, size, buf->seqno, MM_PTR_FMT_WIDTH,
ptr, tmp);
#endif
}