summaryrefslogtreecommitdiff
path: root/base/gxfill.c
diff options
context:
space:
mode:
authorKen Sharp <ken.sharp@artifex.com>2017-11-15 16:49:41 +0000
committerKen Sharp <ken.sharp@artifex.com>2017-11-16 08:26:44 +0000
commitdd820bbe7f53e051add94dbcdc779dae1820e0d6 (patch)
treea208eb741a0afc21eb41b0ebc95c202263e64925 /base/gxfill.c
parentc9951359bde5c4e72a20624788a47a97872db090 (diff)
downloadghostpdl-dd820bbe7f53e051add94dbcdc779dae1820e0d6.tar.gz
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.
Diffstat (limited to 'base/gxfill.c')
-rw-r--r--base/gxfill.c2
1 files changed, 1 insertions, 1 deletions
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 */