qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 05/21] arch_init: Clean up the duplicate variable 'le


From: Juan Quintela
Subject: [Qemu-devel] [PULL 05/21] arch_init: Clean up the duplicate variable 'len' defining in ram_load()
Date: Fri, 12 Jun 2015 07:03:34 +0200

From: zhanghailiang <address@hidden>

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 <address@hidden>
Signed-off-by: Juan Quintela <address@hidden>
---
 migration/ram.c | 1 -
 1 file changed, 1 deletion(-)

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;

-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]