kconfig/symbol.c: use correct pointer type argument for sizeof
authorHeinrich Schuchardt <[email protected]>
Wed, 8 Nov 2017 21:09:59 +0000 (22:09 +0100)
committerMasahiro Yamada <[email protected]>
Thu, 23 Nov 2017 14:12:02 +0000 (23:12 +0900)
commit88127dae6ed9d6aa938e9cf1776dc90b897fc1f7
treeb1ba5b5332108d1493aa5eedeb695092f953bed5
parentae6b289a37890909fea0e4a1666e19377fa0ed2c
kconfig/symbol.c: use correct pointer type argument for sizeof

sym_arr is of type struct symbol **.
So in malloc we need sizeof(struct symbol *).

The problem was indicated by coccinelle.

Signed-off-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
scripts/kconfig/symbol.c