This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/media_tree.git tree:
Subject: i5100_edac: Fix a warning when compiled with 32 bits Author: Mauro Carvalho Chehab <[email protected]> Date: Thu Mar 29 08:41:08 2012 -0300 drivers/edac/i5100_edac.c: In function ‘i5100_init_csrows’: drivers/edac/i5100_edac.c:862:3: warning: format ‘%zd’ expects argument of type ‘signed size_t’, but argument 5 has type ‘long unsigned int’ [-Wformat] Reviewed-by: Aristeu Rozanski <[email protected]> Cc: "Niklas Söderlund" <[email protected]> Cc: Borislav Petkov <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> drivers/edac/i5100_edac.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/media_tree.git?a=commitdiff;h=9f70d08a4c4581eee802563b709f710ad492d966 diff --git a/drivers/edac/i5100_edac.c b/drivers/edac/i5100_edac.c index d9b4921..e9e7c2a 100644 --- a/drivers/edac/i5100_edac.c +++ b/drivers/edac/i5100_edac.c @@ -859,8 +859,8 @@ static void __devinit i5100_init_csrows(struct mem_ctl_info *mci) i5100_rank_to_slot(mci, chan, rank)); } - debugf2("dimm channel %d, rank %d, size %zd\n", - chan, rank, PAGES_TO_MiB(npages)); + debugf2("dimm channel %d, rank %d, size %ld\n", + chan, rank, (long)PAGES_TO_MiB(npages)); } } _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
