Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d2ee98d authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

skge: add paren around sizeof arg

parent a4a76503
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}