summaryrefslogtreecommitdiff
path: root/source/fitz/svg-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/svg-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/svg-device.c')
-rw-r--r--source/fitz/svg-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/svg-device.c b/source/fitz/svg-device.c
index e80682fd..9ae4f189 100644
--- a/source/fitz/svg-device.c
+++ b/source/fitz/svg-device.c
@@ -1255,7 +1255,7 @@ svg_dev_drop_device(fz_context *ctx, fz_device *dev)
fz_device *fz_new_svg_device(fz_context *ctx, fz_output *out, float page_width, float page_height, int text_format, int reuse_images)
{
- svg_device *dev = fz_new_device(ctx, sizeof *dev);
+ svg_device *dev = fz_new_derived_device(ctx, svg_device);
dev->super.close_device = svg_dev_close_device;
dev->super.drop_device = svg_dev_drop_device;