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/mt312.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/mt312.c')
-rw-r--r-- | drivers/media/dvb-frontends/mt312.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/mt312.c b/drivers/media/dvb-frontends/mt312.c index a74ac0ddb833..2163490c1e6b 100644 --- a/drivers/media/dvb-frontends/mt312.c +++ b/drivers/media/dvb-frontends/mt312.c @@ -103,7 +103,7 @@ static int mt312_write(struct mt312_state *state, const enum mt312_reg_addr reg, if (1 + count > sizeof(buf)) { printk(KERN_WARNING - "mt312: write: len=%zd is too big!\n", count); + "mt312: write: len=%zu is too big!\n", count); return -EINVAL; } |