Re: [ovs-dev] [PATCH] ovs-numa: Correct printf format specifiers.

2014-08-13 Thread Ben Pfaff
Thanks, applied. On Wed, Aug 13, 2014 at 02:20:36PM -0700, Alex Wang wrote: > Thx for the fix, Acked-by: Alex Wang > > > On Wed, Aug 13, 2014 at 2:19 PM, Ben Pfaff wrote: > > > list_size() yields a size_t, not uint64_t, and these types are different on > > 32-bit targets. > > > > Signed-off-b

Re: [ovs-dev] [PATCH] ovs-numa: Correct printf format specifiers.

2014-08-13 Thread Alex Wang
Thx for the fix, Acked-by: Alex Wang On Wed, Aug 13, 2014 at 2:19 PM, Ben Pfaff wrote: > list_size() yields a size_t, not uint64_t, and these types are different on > 32-bit targets. > > Signed-off-by: Ben Pfaff > --- > lib/ovs-numa.c |4 ++-- > 1 file changed, 2 insertions(+), 2 deletio

[ovs-dev] [PATCH] ovs-numa: Correct printf format specifiers.

2014-08-13 Thread Ben Pfaff
list_size() yields a size_t, not uint64_t, and these types are different on 32-bit targets. Signed-off-by: Ben Pfaff --- lib/ovs-numa.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ovs-numa.c b/lib/ovs-numa.c index bcf9b68..44df40f 100644 --- a/lib/ovs-numa.c ++