dpif-linux: Fix invalid format specifier.
authorEthan Jackson <ethan@nicira.com>
Wed, 6 Jun 2012 01:02:30 +0000 (18:02 -0700)
committerEthan Jackson <ethan@nicira.com>
Wed, 6 Jun 2012 18:29:33 +0000 (11:29 -0700)
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@nicira.com>
lib/dpif-linux.c

index b571441..62f6917 100644 (file)
@@ -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);
 }