summaryrefslogtreecommitdiff
path: root/source/fitz/test-device.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2017-03-28 10:55:24 +0100
committerRobin Watts <robin.watts@artifex.com>2017-03-28 10:56:21 +0100
commita7e597397133d4aaa717869258eac6ae34c7dad0 (patch)
treece8c4a2c34f4282b69ddd24531ae1c319470e8c4 /source/fitz/test-device.c
parent57b2ee8fe52cf9e2eaf4095b8697f33e17a5529f (diff)
downloadmupdf-a7e597397133d4aaa717869258eac6ae34c7dad0.tar.xz
Rejig fz_new_device to be fz_new_derived_device.
In keeping with the rest of the code.
Diffstat (limited to 'source/fitz/test-device.c')
-rw-r--r--source/fitz/test-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/test-device.c b/source/fitz/test-device.c
index abe27dbb..f12a294b 100644
--- a/source/fitz/test-device.c
+++ b/source/fitz/test-device.c
@@ -462,7 +462,7 @@ fz_test_end_tile(fz_context *ctx, fz_device *dev_)
fz_device *
fz_new_test_device(fz_context *ctx, int *is_color, float threshold, int options, fz_device *passthrough)
{
- fz_test_device *dev = fz_new_device(ctx, sizeof *dev);
+ fz_test_device *dev = fz_new_derived_device(ctx, fz_test_device);
dev->super.fill_path = fz_test_fill_path;
dev->super.stroke_path = fz_test_stroke_path;