Skip to content
Snippets Groups Projects
Commit 973089ff authored by Danny Auble's avatar Danny Auble
Browse files

Fix bad format.

parent e38c1829
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ static void _state_read_buf(Buf buffer)
if (!port_resv || (bit_size(port_resv) != PORT_CNT)) {
error("_state_read_buf: Reserve Port size was %d not %d, "
"reallocating",
port_resv ? bit_size(port_resv) : PORT_CNT);
port_resv ? bit_size(port_resv) : -1, PORT_CNT);
port_resv = bit_realloc(port_resv, PORT_CNT);
}
pthread_mutex_unlock(&port_mutex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment