diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-02-25 00:03:12 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-03-02 21:16:14 +0100 |
commit | 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1 (patch) | |
tree | b67d7c7590769ddf8c3bf52677e3cca5ce678435 /board/mx1fs2 | |
parent | 5599c28cef55be42a8ca6fa8086b1a44e56a85d2 (diff) | |
download | u-boot-imx-217bf6b6a313d9ccb619a4dbc09f73f77cd48df1.zip u-boot-imx-217bf6b6a313d9ccb619a4dbc09f73f77cd48df1.tar.gz u-boot-imx-217bf6b6a313d9ccb619a4dbc09f73f77cd48df1.tar.bz2 |
mx1fs2/flash: Fix multiple compiler warnings
"pointer targets in assignment differ in signedness"
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/mx1fs2')
-rw-r--r-- | board/mx1fs2/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/mx1fs2/flash.c b/board/mx1fs2/flash.c index 3806310..47885bc 100644 --- a/board/mx1fs2/flash.c +++ b/board/mx1fs2/flash.c @@ -173,7 +173,7 @@ 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"; |