diff options
Diffstat (limited to 'common/cmd_mem.c')
| -rw-r--r-- | common/cmd_mem.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/common/cmd_mem.c b/common/cmd_mem.c index f7a442a88..f03233cee 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@ -48,9 +48,9 @@ static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);  /* Display values from last command.   * Memory modify remembered values are different from display memory.   */ -uint	dp_last_addr, dp_last_size; -uint	dp_last_length = 0x40; -uint	mm_last_addr, mm_last_size; +static uint	dp_last_addr, dp_last_size; +static uint	dp_last_length = 0x40; +static uint	mm_last_addr, mm_last_size;  static	ulong	base_address = 0; |