Commit 86c35d74 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina

ixgbe: Fix format string in ixgbe_fcoe.

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: default avatarMasanari Iida <standby24x7@gmail.com>
Tested-By: default avatarJack Morgan <jack.morgan@intel.com>
Signed-off-by: default avatarAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent c7dcec7d
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment