Re: [PATCH 1/1] net: i10e: use matching format indentifiers

2016-07-31 Thread David Miller
From: Heinrich Schuchardt Date: Sun, 31 Jul 2016 11:39:28 +0200 > i is defined as int but output as %u several times. > Change the definition to unsigned. > > Signed-off-by: Heinrich Schuchardt I hate changes like this. The canonical way to loop over a value is to use a signed integer, named

[PATCH 1/1] net: i10e: use matching format indentifiers

2016-07-31 Thread Heinrich Schuchardt
i is defined as int but output as %u several times. Change the definition to unsigned. Signed-off-by: Heinrich Schuchardt --- drivers/net/ethernet/intel/i40e/i40e_ethtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c b/drive