From dd820bbe7f53e051add94dbcdc779dae1820e0d6 Mon Sep 17 00:00:00 2001 From: Ken Sharp Date: Wed, 15 Nov 2017 16:49:41 +0000 Subject: Device method repair - use accessors throughout A lot of places accessed device methods directly, instead of using the accessor macros. Update all the code to use the accessors. --- base/gxfill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/gxfill.c') diff --git a/base/gxfill.c b/base/gxfill.c index 2bd0b4b07..0c879fbb9 100644 --- a/base/gxfill.c +++ b/base/gxfill.c @@ -199,7 +199,7 @@ is_spotan_device(gx_device * dev) * is allocaded on the stack i.e. has no block header with a descriptor * but has dev->memory set like a heap-allocated device. */ - return dev->procs.open_device == san_open; + return dev_proc(dev, open_device) == san_open; } /* Forward declarations */ -- cgit v1.2.1