[ovs-dev] [PATCH ovn] Fix compilation error for m32.

numans at ovn.org numans at ovn.org
Wed Jul 14 22:23:15 UTC 2021


From: Numan Siddique <numans at ovn.org>

Fixes: 895e02ec0be6("ovn-sbctl.c Add logical flows count numbers")
Signed-off-by: Numan Siddique <numans at ovn.org>
---
 utilities/ovn-sbctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utilities/ovn-sbctl.c b/utilities/ovn-sbctl.c
index 1ab148a67b..4d7e7d6702 100644
--- a/utilities/ovn-sbctl.c
+++ b/utilities/ovn-sbctl.c
@@ -983,7 +983,7 @@ print_lflow_counters(size_t n_flows, struct sbctl_lflow *lflows, struct ds *s)
                            prev->lflow->pipeline, dp_lflows, s);
 
     }
-    ds_put_format(s, "Total number of logical flows = %ld\n", n_flows);
+    ds_put_format(s, "Total number of logical flows = %"PRIuSIZE"\n", n_flows);
 }
 
 static void
-- 
2.31.1



More information about the dev mailing list