summaryrefslogtreecommitdiff
path: root/base/gsequivc.h
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-01-04 14:14:35 +0000
committerRobin Watts <robin.watts@artifex.com>2016-01-04 14:14:58 +0000
commit7795f0f1f8700651d2a79f979a5d40885569dd11 (patch)
treec35ff0edd79a34e46350db4b34d7766099e72f60 /base/gsequivc.h
parent998c8bf7a2e409b6c4c29b8e535028a24404e7c5 (diff)
downloadghostpdl-7795f0f1f8700651d2a79f979a5d40885569dd11.tar.gz
Squash warnings: ICC code.
Various bits of the ICC code collects return values only to not check them. Fix that here. In some cases this is because functions have a 'void' return type so there isn't a way to return an error. Change those return types and ensure that all callers check and propogate the errors.
Diffstat (limited to 'base/gsequivc.h')
-rw-r--r--base/gsequivc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/gsequivc.h b/base/gsequivc.h
index ebd50fb49..7a7a1e5ac 100644
--- a/base/gsequivc.h
+++ b/base/gsequivc.h
@@ -48,7 +48,7 @@ typedef struct equivalent_cmyk_color_params_s {
/*
* If possible, update the equivalent CMYK color for spot colors.
*/
-void update_spot_equivalent_cmyk_colors(gx_device * pdev,
+int update_spot_equivalent_cmyk_colors(gx_device * pdev,
const gs_state * pgs, gs_devn_params * pdevn_params,
equivalent_cmyk_color_params * pparams);