diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-03-22 08:38:23 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-03-27 12:14:45 +0200 |
commit | db6cd4c855fd7a9e397bafd3361e66509fe47de0 (patch) | |
tree | e09ce9a3ebb2569009ae6266c658bc86f9fc561d /hw/display/cirrus_vga_rop2.h | |
parent | 57094547dfea4ce784923b8abb53ac3ab4e3961a (diff) | |
download | qemu-db6cd4c855fd7a9e397bafd3361e66509fe47de0.zip |
cirrus: fix PUTPIXEL macro
Should be "c" not "col". The macro is used with "col" as third parameter
everywhere, so this tyops doesn't break something.
Fixes: 026aeffcb4752054830ba203020ed6eb05bcaba8
Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-id: 1490168303-24588-1-git-send-email-kraxel@redhat.com
Diffstat (limited to 'hw/display/cirrus_vga_rop2.h')
-rw-r--r-- | hw/display/cirrus_vga_rop2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/display/cirrus_vga_rop2.h b/hw/display/cirrus_vga_rop2.h index b86bcd6e09..b208b7348a 100644 --- a/hw/display/cirrus_vga_rop2.h +++ b/hw/display/cirrus_vga_rop2.h @@ -29,8 +29,8 @@ #elif DEPTH == 24 #define PUTPIXEL(s, a, c) do { \ ROP_OP(s, a, c); \ - ROP_OP(s, a + 1, (col >> 8)); \ - ROP_OP(s, a + 2, (col >> 16)); \ + ROP_OP(s, a + 1, (c >> 8)); \ + ROP_OP(s, a + 2, (c >> 16)); \ } while (0) #elif DEPTH == 32 #define PUTPIXEL(s, a, c) ROP_OP_32(s, a, c) |