From b56042ac5deef373cefe156fc18dc38257d6ddfe Mon Sep 17 00:00:00 2001 From: Bryan Phillippe Date: Fri, 20 Aug 2010 09:25:34 -0700 Subject: [PATCH] vconn-stream: printf() specifier for int is %d (not %zu) --- lib/vconn-stream.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/vconn-stream.c b/lib/vconn-stream.c index e6c2946d4..ba1cec665 100644 --- a/lib/vconn-stream.c +++ b/lib/vconn-stream.c @@ -173,8 +173,7 @@ vconn_stream_recv(struct vconn *vconn, struct ofpbuf **bufferp) oh = s->rxbuf->data; rx_len = ntohs(oh->length); if (rx_len < sizeof(struct ofp_header)) { - VLOG_ERR_RL(&rl, "received too-short ofp_header (%zu bytes)", - rx_len); + VLOG_ERR_RL(&rl, "received too-short ofp_header (%d bytes)", rx_len); return EPROTO; } else if (s->rxbuf->size < rx_len) { int retval = vconn_stream_recv__(s, rx_len); -- 2.43.0