vconn-stream: printf() specifier for int is %d (not %zu)
authorBryan Phillippe <bp@toroki.com>
Fri, 20 Aug 2010 16:25:34 +0000 (09:25 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 20 Aug 2010 17:43:35 +0000 (10:43 -0700)
lib/vconn-stream.c

index e6c2946..ba1cec6 100644 (file)
@@ -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);