libsys: fix format specifier in RMIB code

Reported by dcb314.

This closes #141.

Change-Id: I26011870891f5ba22844c335af6081ee9f05c12c
This commit is contained in:
David van Moolenbroek 2016-08-05 10:12:06 +00:00
parent 89a4204b83
commit 1ccb488d84

View File

@ -944,6 +944,6 @@ rmib_process(const message * m_in, int ipc_status)
r = asynsend3(m_in->m_source, &m_out, AMF_NOREPLY); r = asynsend3(m_in->m_source, &m_out, AMF_NOREPLY);
if (r != OK) 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); m_in->m_source, r);
} }