[ovs-dev] [PATCH] dpif-linux: Fix invalid format specifier.

Ethan Jackson ethan at nicira.com
Tue Jun 5 18:08:06 PDT 2012


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 <ethan at nicira.com>
---
 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 b571441..8852548 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 %ld%s",
              dpif_name(dpif_), ch - dpif->channels, ds_cstr(&s));
     ds_destroy(&s);
 }
-- 
1.7.10.2




More information about the dev mailing list