From 1ccb488d84251f054aa2e4e57c38d27bc59d3d0b Mon Sep 17 00:00:00 2001 From: David van Moolenbroek Date: Fri, 5 Aug 2016 10:12:06 +0000 Subject: [PATCH] libsys: fix format specifier in RMIB code Reported by dcb314. This closes #141. Change-Id: I26011870891f5ba22844c335af6081ee9f05c12c --- minix/lib/libsys/rmib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minix/lib/libsys/rmib.c b/minix/lib/libsys/rmib.c index 430135366..d14287efc 100644 --- a/minix/lib/libsys/rmib.c +++ b/minix/lib/libsys/rmib.c @@ -944,6 +944,6 @@ rmib_process(const message * m_in, int ipc_status) r = asynsend3(m_in->m_source, &m_out, AMF_NOREPLY); if (r != OK) - printf("lsys:rmib: unable to send reply to %d: %d\n", + printf("lsys:rmib: unable to send reply to %d: %zd\n", m_in->m_source, r); } -- 2.44.0