[gs-commits] ghostpdl branch, master, updated. jbig2dec-0.14-1690-gbaad48a
[email protected] (Robin Watts)
| Newsgroups | gmane.comp.printing.ghostscript.cvs |
|---|---|
| Message-ID | <[email protected]> |
The ghostpdl branch, master has been updated
via baad48ab4b35dc9edf0317a1773d9efc7631f2d7 (commit)
from 3aa9b059018bb49ddf67a87ddd87e01157143b99 (commit)
----------------------------------------------------------------------
commit baad48ab4b35dc9edf0317a1773d9efc7631f2d7
Author: Robin Watts <[email protected]>
Date: Fri Sep 20 11:53:10 2019 -0700
Squash stupid const warning.
diff --git a/base/gslibctx.c b/base/gslibctx.c
index e7af870..855a1b4 100644
--- a/base/gslibctx.c
+++ b/base/gslibctx.c
@@ -1095,6 +1095,6 @@ int gs_lib_ctx_get_args(gs_lib_ctx_t *ctx, const char * const **argv)
return 0;
core = ctx->core;
- *argv = core->argv;
+ *argv = (const char * const *)core->argv;
return core->argc;
}
Summary of changes:
base/gslibctx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)