diff options
author | wdenk <wdenk> | 2004-07-12 22:34:51 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-12 22:34:51 +0000 |
commit | 75b1fa78643bfa2f00ebf6aaf470ac688161b37d (patch) | |
tree | b280555a4929a90805fc46826e5ca00a804d50e7 /drivers | |
parent | 07cba3514b260aad26409fab2dfadbd9d2e467dc (diff) |
Patch by Michael Bendzick, 12 Jul 2004:
fix output formatting in drivers/cfi_flash.c
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cfi_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cfi_flash.c b/drivers/cfi_flash.c index b79cf59344c..e89f975ce66 100644 --- a/drivers/cfi_flash.c +++ b/drivers/cfi_flash.c @@ -462,7 +462,7 @@ void flash_print_info (flash_info_t * info) if ((i % 5) == 0) printf ("\n "); printf (" %08lX%s", - info->start[i], info->protect[i] ? " (RO)" : " "); + info->start[i], info->protect[i] ? " (RO)" : " "); #endif } putc ('\n'); |