From Travis Spencer <tspencer@cs.pdx.edu>:

Fix typo causing a syntax error.
This commit is contained in:
Carl Worth 2005-08-10 14:30:15 +00:00
parent eacc1e95a5
commit bdd8cbddee
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2005-08-10 Carl Worth <cworth@cworth.org>
From Travis Spencer <tspencer@cs.pdx.edu>:
* src/cairo-xcb-surface.c:
(_cairo_xcb_surface_composite_trapezoids): Fix typo causing a
syntax error.
2005-08-10 Keith Packard <keithp@keithp.com>
* test/Makefile.am:

View file

@ -983,10 +983,10 @@ _cairo_xcb_surface_composite_trapezoids (cairo_operator_t operator,
switch (antialias) {
case CAIRO_ANTIALIAS_NONE:
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A1),
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A1);
break;
default:
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A8),
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A8);
break;
}