diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-07-12 14:36:34 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-07-13 16:55:00 +0200 | 
| commit | 0a5676befb0c590212a53f7627fa5d0d8a84bf34 (patch) | |
| tree | ea6812919abaf744be8c7b5b904dc78244cbaa4d /board/zylonite/nand.c | |
| parent | 18c8a28aad49803780bd8d52432ded528e37e701 (diff) | |
| download | olio-uboot-2014.01-0a5676befb0c590212a53f7627fa5d0d8a84bf34.tar.xz olio-uboot-2014.01-0a5676befb0c590212a53f7627fa5d0d8a84bf34.zip | |
Fix some more printf() format issues.
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/zylonite/nand.c')
| -rw-r--r-- | board/zylonite/nand.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/zylonite/nand.c b/board/zylonite/nand.c index aa3932ad2..ca1657843 100644 --- a/board/zylonite/nand.c +++ b/board/zylonite/nand.c @@ -254,7 +254,7 @@ static unsigned long dfc_wait_event(unsigned long event)  			break;  		}  		if(get_delta(start) > timeout) { -			DFC_DEBUG1("dfc_wait_event: TIMEOUT waiting for event: 0x%x.\n", event); +			DFC_DEBUG1("dfc_wait_event: TIMEOUT waiting for event: 0x%lx.\n", event);  			return 0xff000000;  		} |