]> git.proxmox.com Git - qemu.git/commit
cpu-exec: remove unnecessary assignment
authorBlue Swirl <blauwirbel@gmail.com>
Sun, 4 Sep 2011 11:06:22 +0000 (11:06 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 10 Sep 2011 14:50:08 +0000 (14:50 +0000)
commit337fc758703b2cc2edabc1fdca5907f11fa837b0
treec6ca72242178a9cc90dbb2619ca6080e9b726086
parent6115c0a82dfdb4192ea42b48aebced2a7f96efd4
cpu-exec: remove unnecessary assignment

Avoid this warning from clang analyzer:
/src/qemu/cpu-exec.c:97:5: warning: Value stored to 'phys_page2' is never read
    phys_page2 = -1;

Adjust the scope of the variable while at it.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
cpu-exec.c