aboutsummaryrefslogtreecommitdiff
path: root/common/cmd_mem.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.denx.de>2006-07-21 11:37:40 +0200
committerWolfgang Denk <wd@pollux.denx.de>2006-07-21 11:37:40 +0200
commit029b6dc77c8533fe46d9402463487512831c0b29 (patch)
tree808449338a88797c56390cba321c2ccc81391371 /common/cmd_mem.c
parent2c33a38bace6a29fe85d6dcd9567bf0ae751014e (diff)
Make code better readable.
Patch by Ladislav Michl, 14 Sep 2005
Diffstat (limited to 'common/cmd_mem.c')
-rw-r--r--common/cmd_mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_mem.c b/common/cmd_mem.c
index 0f4f9b73d..d0fae6b24 100644
--- a/common/cmd_mem.c
+++ b/common/cmd_mem.c
@@ -707,7 +707,7 @@ int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
#if defined(CFG_MEMTEST_SCRATCH)
vu_long *dummy = (vu_long*)CFG_MEMTEST_SCRATCH;
#else
- vu_long *dummy = NULL;
+ vu_long *dummy = 0; /* yes, this is address 0x0, not NULL */
#endif
int j;
int iterations = 1;