diff options
| author | Anthony Liguori | 2011-03-22 17:27:33 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2011-03-22 17:27:33 +0100 |
| commit | a0843a68c4e79df801342ec37347dfebc591082e (patch) | |
| tree | 4865dd7dff6f51d070de458a7f6012049977f277 /ui | |
| parent | fix vnc regression (diff) | |
| download | qemu-a0843a68c4e79df801342ec37347dfebc591082e.tar.gz qemu-a0843a68c4e79df801342ec37347dfebc591082e.tar.xz qemu-a0843a68c4e79df801342ec37347dfebc591082e.zip | |
vnc: fix build error from VNC_DIRTY_WORDS
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1659,7 +1659,7 @@ static void framebuffer_update_request(VncState *vs, int incremental, for (i = 0; i < h; i++) { bitmap_set(vs->dirty[y_position + i], 0, width); bitmap_clear(vs->dirty[y_position + i], width, - VNC_DIRTY_WORDS * BITS_PER_LONG - width); + VNC_DIRTY_BITS - width); } } } |
