summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/em28xx/em28xx-core.c
diff options
context:
space:
mode:
authorHans Verkuil <devnull@localhost>2005-11-12 23:12:53 +0000
committerHans Verkuil <devnull@localhost>2005-11-12 23:12:53 +0000
commit68bee46a58e8a58c55a5991123ec927df939d420 (patch)
treeb63ba5c2f2dab5c4674fb0f3d0b14bc001598afe /linux/drivers/media/video/em28xx/em28xx-core.c
parentae044a08f3f0208468ac2dfa4b22fcb68d6dd043 (diff)
downloadmediapointer-dvb-s2-68bee46a58e8a58c55a5991123ec927df939d420.tar.gz
mediapointer-dvb-s2-68bee46a58e8a58c55a5991123ec927df939d420.tar.bz2
64-bit fixes esp. for broken compat_ioctl32.
From: Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/em28xx/em28xx-core.c')
-rw-r--r--linux/drivers/media/video/em28xx/em28xx-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-core.c b/linux/drivers/media/video/em28xx/em28xx-core.c
index 8491dbd0a..a07ddce59 100644
--- a/linux/drivers/media/video/em28xx/em28xx-core.c
+++ b/linux/drivers/media/video/em28xx/em28xx-core.c
@@ -167,7 +167,7 @@ u32 em28xx_request_buffers(struct em28xx *dev, u32 count)
const size_t imagesize = PAGE_ALIGN(dev->frame_size); /*needs to be page aligned cause the buffers can be mapped individually! */
void *buff = NULL;
u32 i;
- em28xx_coredbg("requested %i buffers with size %i", count, imagesize);
+ em28xx_coredbg("requested %i buffers with size %zi", count, imagesize);
if (count > EM28XX_NUM_FRAMES)
count = EM28XX_NUM_FRAMES;