summaryrefslogtreecommitdiff
path: root/boilerplate/cairo-boilerplate.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-09-09 16:03:41 -0700
committerCarl Worth <cworth@cworth.org>2006-09-09 16:04:51 -0700
commita37e6675333da8f0c5ebe4b8d199f74b8ec30b43 (patch)
tree7f0700dd15cf475f2b00c09abcd035f9009dc2e9 /boilerplate/cairo-boilerplate.h
parent195fd5cde610377ffb34c98fed308b2e4d881cbc (diff)
downloadcairo-a37e6675333da8f0c5ebe4b8d199f74b8ec30b43.tar.gz
Use unsigned consistently to avoid compiler warning.
Diffstat (limited to 'boilerplate/cairo-boilerplate.h')
-rw-r--r--boilerplate/cairo-boilerplate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/boilerplate/cairo-boilerplate.h b/boilerplate/cairo-boilerplate.h
index 53fb8dc86..b40825f35 100644
--- a/boilerplate/cairo-boilerplate.h
+++ b/boilerplate/cairo-boilerplate.h
@@ -106,7 +106,7 @@ typedef struct _cairo_boilerplate_target
const char *name;
cairo_surface_type_t expected_type;
cairo_content_t content;
- int error_tolerance;
+ unsigned int error_tolerance;
cairo_boilerplate_create_surface_t create_surface;
cairo_boilerplate_write_to_png_t write_to_png;
cairo_boilerplate_cleanup_t cleanup;