diff options
| author | Wolfgang Denk <wd@denx.de> | 2007-11-18 17:11:09 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-11-18 17:11:09 +0100 | 
| commit | 8412d814ce8bf5570a2b747f1e7fd321097fe987 (patch) | |
| tree | 27f1467772c675242af737a8481ec75f81b0d2d9 /board/pleb2/flash.c | |
| parent | 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37 (diff) | |
| download | olio-uboot-2014.01-8412d814ce8bf5570a2b747f1e7fd321097fe987.tar.xz olio-uboot-2014.01-8412d814ce8bf5570a2b747f1e7fd321097fe987.zip | |
Fix compiler warnings for ARM systems.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/pleb2/flash.c')
| -rw-r--r-- | board/pleb2/flash.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/pleb2/flash.c b/board/pleb2/flash.c index 97271d921..5a1eba6b3 100644 --- a/board/pleb2/flash.c +++ b/board/pleb2/flash.c @@ -196,7 +196,7 @@ void flash_print_info (flash_info_t * info)  	int i;  	uchar *boottype;  	uchar *bootletter; -	uchar *fmt; +	char *fmt;  	uchar botbootletter[] = "B";  	uchar topbootletter[] = "T";  	uchar botboottype[] = "bottom boot sector"; |