projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53b3de1
)
[PATCH] em28xx: %zd for size_t
author
Al Viro
<viro@ftp.linux.org.uk>
Thu, 15 Dec 2005 09:17:39 +0000
(09:17 +0000)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Thu, 15 Dec 2005 18:04:29 +0000
(10:04 -0800)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/media/video/em28xx/em28xx-core.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/em28xx/em28xx-core.c
b/drivers/media/video/em28xx/em28xx-core.c
index e8a1c224756731173e68c5eef407a283e53e5f2e..ec11619f8ea962464b8f09c7faa02778a3fa1f94 100644
(file)
--- a/
drivers/media/video/em28xx/em28xx-core.c
+++ b/
drivers/media/video/em28xx/em28xx-core.c
@@
-126,7
+126,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 %
zd
", count, imagesize);
if (count > EM28XX_NUM_FRAMES)
count = EM28XX_NUM_FRAMES;