summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-06-29 16:25:42 +0200
committerGerd Hoffmann <kraxel@redhat.com>2010-06-29 16:25:42 +0200
commiteb96d4ec74b56432d2b7315c50b362fb750bd5b7 (patch)
tree363285583aa0dd82789df77b24897b8fb5df3622
parent65f9bef4fecd1ac46d9cca31158c49d46fb2797a (diff)
make SpiceRect compatible with pixman_box32
-rw-r--r--spice/draw.h4
1 files 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 {