diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-02-24 23:03:12 +0000 |
---|---|---|
committer | Peter Pearse <peter.pearse@arm.com> | 2008-02-25 15:00:06 +0000 |
commit | 14e099e698d41e8179d05c2b2dbcf704a236f748 (patch) | |
tree | 50cfa23f99b78a8ada21fbf0aa78fbecb15863b7 /board/mx1fs2/flash.c | |
parent | 724902c8464e610642b3a170278b99710325888e (diff) | |
download | u-boot-imx-14e099e698d41e8179d05c2b2dbcf704a236f748.zip u-boot-imx-14e099e698d41e8179d05c2b2dbcf704a236f748.tar.gz u-boot-imx-14e099e698d41e8179d05c2b2dbcf704a236f748.tar.bz2 |
mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/mx1fs2/flash.c')
-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"; |