diff options
author | Robin Watts <robin.watts@artifex.com> | 2016-06-08 12:42:57 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2016-06-08 13:53:56 +0100 |
commit | 2fd7f11cfe4ebdc6d1035db521e61d15101ab36e (patch) | |
tree | cf18d3cc3ab606b4f22684ef4ea2ea3f06d41602 /source/fitz/draw-device.c | |
parent | fea0f8467f983cc5c1075d19787a4b398d0d5e22 (diff) | |
download | mupdf-2fd7f11cfe4ebdc6d1035db521e61d15101ab36e.tar.xz |
Move to using size_t for all mallocs.
This has knock on effects in the store.
fix
Diffstat (limited to 'source/fitz/draw-device.c')
-rw-r--r-- | source/fitz/draw-device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/draw-device.c b/source/fitz/draw-device.c index 10122b1d..d72b20d0 100644 --- a/source/fitz/draw-device.c +++ b/source/fitz/draw-device.c @@ -1936,7 +1936,7 @@ fz_new_tile_record(fz_context *ctx, fz_pixmap *dest, fz_pixmap *shape) return tile; } -unsigned int +size_t fz_tile_size(fz_context *ctx, tile_record *tile) { if (!tile) |