[media] helene: fix a warning when printing sizeof()
drivers/media/dvb-frontends/helene.c: In function 'helene_write_regs': drivers/media/dvb-frontends/helene.c:312:5: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'unsigned int' [-Wformat=] "wr reg=%04x: len=%d vs %lu is too big!\n", ^ Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Родитель
9ca1736f8d
Коммит
b6095d29a2
|
@ -309,7 +309,7 @@ static int helene_write_regs(struct helene_priv *priv,
|
|||
|
||||
if (len + 1 > sizeof(buf)) {
|
||||
dev_warn(&priv->i2c->dev,
|
||||
"wr reg=%04x: len=%d vs %lu is too big!\n",
|
||||
"wr reg=%04x: len=%d vs %Zu is too big!\n",
|
||||
reg, len + 1, sizeof(buf));
|
||||
return -E2BIG;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче