From aecfb4af7e87a78dfec44db1fa82c4463a7f8309 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Tue, 5 Jun 2012 18:02:30 -0700 Subject: [PATCH] dpif-linux: Fix invalid format specifier. This fixes the following warning on my system. "format '%d' expects argument of type 'int', but argument 5 has type 'long int'" Signed-off-by: Ethan Jackson --- lib/dpif-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c index b571441f5..62f691744 100644 --- a/lib/dpif-linux.c +++ b/lib/dpif-linux.c @@ -1981,7 +1981,7 @@ report_loss(struct dpif *dpif_, struct dpif_channel *ch) } ds_chomp(&s, ','); - VLOG_ERR("%s: lost packet on channel %d%s", + VLOG_ERR("%s: lost packet on channel %td%s", dpif_name(dpif_), ch - dpif->channels, ds_cstr(&s)); ds_destroy(&s); } -- 2.45.2