From eb96d4ec74b56432d2b7315c50b362fb750bd5b7 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 29 Jun 2010 16:25:42 +0200 Subject: [PATCH] make SpiceRect compatible with pixman_box32 --- spice/draw.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spice/draw.h b/spice/draw.h index 6a13bf9..475a58a 100644 --- a/spice/draw.h +++ b/spice/draw.h @@ -58,10 +58,10 @@ typedef struct SPICE_ATTR_PACKED SpicePoint16 { } SpicePoint16; typedef struct SPICE_ATTR_PACKED SpiceRect { - int32_t top; int32_t left; - int32_t bottom; + int32_t top; int32_t right; + int32_t bottom; } SpiceRect; typedef struct SPICE_ATTR_PACKED SpicePathSeg {