diff options
author | Etienne Brateau <etienne.brateau@gmail.com> | 2024-12-06 14:44:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-12-06 15:21:54 +0100 |
commit | af37e94a41d9da3d63d03818be70c1df62441f2a (patch) | |
tree | 88d0107c2d8ffd038c3c76c0d338b3e4f105ea1f | |
parent | fa27b31ec185999826894496faac629bd1716b8d (diff) | |
download | gnumach-af37e94a41d9da3d63d03818be70c1df62441f2a.tar.gz gnumach-af37e94a41d9da3d63d03818be70c1df62441f2a.tar.bz2 gnumach-af37e94a41d9da3d63d03818be70c1df62441f2a.zip |
ipc_kmsg: fix print of size of mach_msg_header
msgh_size is a mach_msg_size_t which represent an unsigned int, so %u
must me used there instead of %d
Message-ID: <20241206134419.6609-1-etienne.brateau@gmail.com>
-rw-r--r-- | ipc/ipc_kmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c index b23cae7c..fe6582d1 100644 --- a/ipc/ipc_kmsg.c +++ b/ipc/ipc_kmsg.c @@ -2796,7 +2796,7 @@ ipc_msg_print(mach_msg_header_t *msgh) MACH_MSGH_BITS_LOCAL(msgh->msgh_bits), MACH_MSGH_BITS_REMOTE(msgh->msgh_bits)); - db_printf("msgh_id=%d,size=%d,seqno=%d,", + db_printf("msgh_id=%d,size=%u,seqno=%d,", msgh->msgh_id, msgh->msgh_size, msgh->msgh_seqno); |