summaryrefslogtreecommitdiff
path: root/source/tools
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/tools
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/tools')
-rw-r--r--source/tools/murun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tools/murun.c b/source/tools/murun.c
index 9ee0f0da..c5cefb62 100644
--- a/source/tools/murun.c
+++ b/source/tools/murun.c
@@ -1073,7 +1073,7 @@ js_dev_end_tile(fz_context *ctx, fz_device *dev)
static fz_device *new_js_device(fz_context *ctx, js_State *J)
{
- js_device *dev = fz_new_device(ctx, sizeof *dev);
+ js_device *dev = fz_new_derived_device(ctx, js_device);
dev->super.fill_path = js_dev_fill_path;
dev->super.stroke_path = js_dev_stroke_path;