diff options
author | Gonglei <arei.gonglei@huawei.com> | 2014-11-20 17:07:06 +0800 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-12-10 10:08:12 +0100 |
commit | 525965b85dcd9e0d0359f1cdb04b3f25d754ffd9 (patch) | |
tree | f59b4816a74cc870b5e0d8201ffda2f51ac271df /ui/vnc-enc-tight.c | |
parent | 45e1611de8be0eae55967694dd6e627c2dc354f2 (diff) |
vnc-enc-tight: fix Arguments in wrong order
Arguments in wrong order (SWAPPED_ARGUMENTS)
The positions of arguments in the call to
tight_fill_palette do not match the ordering of the parameters:
&fg is passed to bg
&bg is passed to fg
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/vnc-enc-tight.c')
-rw-r--r-- | ui/vnc-enc-tight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/vnc-enc-tight.c b/ui/vnc-enc-tight.c index 3d1b5cd066..9a9ddf2e3c 100644 --- a/ui/vnc-enc-tight.c +++ b/ui/vnc-enc-tight.c @@ -1489,7 +1489,7 @@ static int send_sub_rect(VncState *vs, int x, int y, int w, int h) } #endif - colors = tight_fill_palette(vs, x, y, w * h, &fg, &bg, &palette); + colors = tight_fill_palette(vs, x, y, w * h, &bg, &fg, &palette); #ifdef CONFIG_VNC_JPEG if (allow_jpeg && vs->tight.quality != (uint8_t)-1) { |