diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2007-11-07 08:19:21 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-11-17 00:26:36 +0100 |
commit | 64bf555465c7926be13e1046ac0d0f05ac72829c (patch) | |
tree | 6957e912ccb6f4140c46bb32d163923a00599617 /board/purple/flash.c | |
parent | 7a60ee7c6248a958c5757d3660a1702723a2786d (diff) | |
download | u-boot-imx-64bf555465c7926be13e1046ac0d0f05ac72829c.zip u-boot-imx-64bf555465c7926be13e1046ac0d0f05ac72829c.tar.gz u-boot-imx-64bf555465c7926be13e1046ac0d0f05ac72829c.tar.bz2 |
Fix warning: pointer targets in assignment differ in signedness
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/purple/flash.c')
-rw-r--r-- | board/purple/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/purple/flash.c b/board/purple/flash.c index 7522580..1baae35 100644 --- a/board/purple/flash.c +++ b/board/purple/flash.c @@ -299,7 +299,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"; |