diff options
author | zhanghailiang <zhang.zhanghailiang@huawei.com> | 2015-05-15 17:00:03 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2015-06-12 06:42:34 +0200 |
commit | 5ee6926582cca64238967b2d00d870265cdb10b8 (patch) | |
tree | e646e2f410bada919a3b180a9e691ddb3ac35db3 | |
parent | 7205c9ec525fe375dd34c0f116c36dc4aab4c0f7 (diff) | |
download | hqemu-5ee6926582cca64238967b2d00d870265cdb10b8.zip hqemu-5ee6926582cca64238967b2d00d870265cdb10b8.tar.gz |
arch_init: Clean up the duplicate variable 'len' defining in ram_load()
There are two places that define 'len' variable, It's OK for compiling,
but makes it difficult for reading.
Remove the local one which defined in the inside 'while' loop.
Signed-off-by: zhanghailiang <zhang.zhanghailiang@huawei.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
-rw-r--r-- | migration/ram.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/migration/ram.c b/migration/ram.c index 3945328..57368e1 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -1459,7 +1459,6 @@ static int ram_load(QEMUFile *f, void *opaque, int version_id) total_ram_bytes = addr; while (!ret && total_ram_bytes) { RAMBlock *block; - uint8_t len; char id[256]; ram_addr_t length; |