diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-07-11 01:16:00 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-07-11 01:16:00 +0200 | 
| commit | 9b55a2536919f4de1bb1044e6eb8262c2f53bc96 (patch) | |
| tree | 56a8a946f45094770f1f4b3e10b2344191c6c40c /board/tqc/tqm5200/cmd_stk52xx.c | |
| parent | 4109df6f75fc00ab7da56d286ba50149a0d16a69 (diff) | |
| download | olio-uboot-2014.01-9b55a2536919f4de1bb1044e6eb8262c2f53bc96.tar.xz olio-uboot-2014.01-9b55a2536919f4de1bb1044e6eb8262c2f53bc96.zip | |
Fix some more print() format errors.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/tqc/tqm5200/cmd_stk52xx.c')
| -rw-r--r-- | board/tqc/tqm5200/cmd_stk52xx.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/tqc/tqm5200/cmd_stk52xx.c b/board/tqc/tqm5200/cmd_stk52xx.c index 7472ca9e9..58039d417 100644 --- a/board/tqc/tqm5200/cmd_stk52xx.c +++ b/board/tqc/tqm5200/cmd_stk52xx.c @@ -478,7 +478,7 @@ static int cmd_wav(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	}  	set_attenuation(volume); -	printf("Play wave file at %#p with length %#x\n", addr, length); +	printf("Play wave file at %lX with length %lX\n", addr, length);  	rcode = i2s_play_wave(addr, length);  	return rcode; |