skge: add paren around sizeof arg

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
stephen hemminger 2017-08-15 10:29:18 -07:00 committed by David S. Miller
parent a4a765031d
commit 9d2ee98daf
1 changed files with 1 additions and 1 deletions

View File

@ -3516,7 +3516,7 @@ static const char *skge_board_name(const struct skge_hw *hw)
if (skge_chips[i].id == hw->chip_id)
return skge_chips[i].name;
snprintf(buf, sizeof buf, "chipid 0x%x", hw->chip_id);
snprintf(buf, sizeof(buf), "chipid 0x%x", hw->chip_id);
return buf;
}