summaryrefslogtreecommitdiff
path: root/base/ets.h
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2017-05-15 14:32:47 +0100
committerRobin Watts <robin.watts@artifex.com>2017-05-16 17:04:03 +0100
commitb5fd7b3473fc7cd02a2575f47b38d07f0e1e4222 (patch)
treee61648c2bf7a186cbcbc99db21eed553a9f27e7f /base/ets.h
parentb9c9f25d2cf43835d3d563e6012968b253e7faf1 (diff)
downloadghostpdl-b5fd7b3473fc7cd02a2575f47b38d07f0e1e4222.tar.gz
Squash warning in ETS code
Missing 'restrict' in a prototype.
Diffstat (limited to 'base/ets.h')
-rw-r--r--base/ets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/ets.h b/base/ets.h
index 8ea003228..337d4b25f 100644
--- a/base/ets.h
+++ b/base/ets.h
@@ -99,7 +99,7 @@ ETS_Ctx *
ets_create(void *malloc_arg, const ETS_Params *params);
void
-ets_line(ETS_Ctx *ctx, unsigned char **dest, const ETS_SrcPixel * const * src);
+ets_line(ETS_Ctx *ctx, unsigned char **dest, const ETS_SrcPixel * const * restrict src);
void
ets_destroy(void *malloc_arg, ETS_Ctx *ctx);