diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-25 01:35:12 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-26 11:50:59 +0200 |
commit | 35f30f36a7e66caa0973a4db620b4245df2cf428 (patch) | |
tree | 491263d000ef2493fde37cccb97867dc9401cce7 /drivers/media/dvb-frontends/or51211.c | |
parent | [media] s5p-mfc: Fix several printk warnings (diff) | |
download | linux-35f30f36a7e66caa0973a4db620b4245df2cf428.tar.xz linux-35f30f36a7e66caa0973a4db620b4245df2cf428.zip |
[media] dvb-frontends: use %zu instead of %zd
size_t is unsigned.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/or51211.c')
-rw-r--r-- | drivers/media/dvb-frontends/or51211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/or51211.c b/drivers/media/dvb-frontends/or51211.c index 10cfc0579168..873ea1da844b 100644 --- a/drivers/media/dvb-frontends/or51211.c +++ b/drivers/media/dvb-frontends/or51211.c @@ -111,7 +111,7 @@ static int or51211_load_firmware (struct dvb_frontend* fe, u8 tudata[585]; int i; - dprintk("Firmware is %zd bytes\n",fw->size); + dprintk("Firmware is %zu bytes\n", fw->size); /* Get eprom data */ tudata[0] = 17; |