diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-30 15:34:34 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-30 15:34:34 +0000 |
commit | af52e234a78bbde964a93ef8cce21f41a5c959f3 (patch) | |
tree | efdabb7d1e8ca92ca10667b78f54331509150808 | |
parent | 23b314729c43101e515e2625db2a2401c72c2596 (diff) |
sna: Fix compilation
Remember to drink coffee and compile "obvious" fixes before pushing.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | src/sna/sna_accel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_accel.c b/src/sna/sna_accel.c index 36665448..47b86985 100644 --- a/src/sna/sna_accel.c +++ b/src/sna/sna_accel.c @@ -1086,7 +1086,7 @@ static inline void box32_add_rect(Box32Rec *box, const xRectangle *r) v = r->y; if (box->y1 > v) - box->y1 = ; + box->y1 = v; v += r->height; if (box->y2 < v) box->y2 = v; |