浏览代码

Fix build time warnings in function mmc_decode_csd()

Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Marcel Ziswiler 17 年之前
父节点
当前提交
6b760189d7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      cpu/pxa/mmc.c

+ 1 - 1
cpu/pxa/mmc.c

@@ -535,7 +535,7 @@ static void mmc_decode_csd(uint32_t * resp)
 	mmc_dev.removable = 0;
 	mmc_dev.block_read = mmc_bread;
 
-	printf("Detected: %u blocks of %u bytes (%uMB) ", mmc_dev.lba,
+	printf("Detected: %lu blocks of %lu bytes (%luMB) ", (unsigned long)mmc_dev.lba,
 	       mmc_dev.blksz, mmc_dev.lba * mmc_dev.blksz / (1024 * 1024));
 }