On Wed, 2014-01-15 at 01:14 +0900, Masanari Iida wrote: > cppcheck detected following warning in ixgbe_fcoe.c > (warning) %d in format string (no. 1) requires 'int' but the > argument type is 'unsigned int'. > > Signed-off-by: Masanari Iida <[email protected]> Tested-By: Jack Morgan <[email protected]> Signed-off-by: Aaron Brown <[email protected]>
> --- > drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c > b/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c > index f58db45..0872617 100644 > --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c > +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.c > @@ -585,7 +585,7 @@ static int ixgbe_fcoe_dma_pool_alloc(struct ixgbe_fcoe > *fcoe, > struct dma_pool *pool; > char pool_name[32]; > > - snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%d", cpu); > + snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%u", cpu); > > pool = dma_pool_create(pool_name, dev, IXGBE_FCPTR_MAX, > IXGBE_FCPTR_ALIGN, PAGE_SIZE); ------------------------------------------------------------------------------ CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choosing CenturyLink Cloud For Critical Workloads, Development Environments & Everything In Between. Get a Quote or Start a Free Trial Today. http://pubads.g.doubleclick.net/gampad/clk?id=119420431&iu=/4140/ostg.clktrk _______________________________________________ E1000-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/e1000-devel To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
