diff options
author | Haru <haru@dotalux.com> | 2016-02-20 21:13:19 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-03-20 18:32:09 +0100 |
commit | 787d25edf045de8df1460a6a975186df0f8d402f (patch) | |
tree | 24c1597db832c93cf0c32840868028de0dea9192 /3rdparty/libconfig/scanctx.h | |
parent | ddbaad9bbab30490a6b23ef74203f30d290aa17c (diff) | |
download | hercules-787d25edf045de8df1460a6a975186df0f8d402f.tar.gz hercules-787d25edf045de8df1460a6a975186df0f8d402f.tar.bz2 hercules-787d25edf045de8df1460a6a975186df0f8d402f.tar.xz hercules-787d25edf045de8df1460a6a975186df0f8d402f.zip |
Corrected some const-correctness errors in libconfig
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to '3rdparty/libconfig/scanctx.h')
-rw-r--r-- | 3rdparty/libconfig/scanctx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/libconfig/scanctx.h b/3rdparty/libconfig/scanctx.h index 004523e2a..a5939ca05 100644 --- a/3rdparty/libconfig/scanctx.h +++ b/3rdparty/libconfig/scanctx.h @@ -40,13 +40,13 @@ struct scan_context FILE *streams[MAX_INCLUDE_DEPTH]; int depth; strbuf_t string; - const char **filenames; + char **filenames; unsigned int num_filenames; }; extern void scanctx_init(struct scan_context *ctx, const char *top_filename); -extern const char **scanctx_cleanup(struct scan_context *ctx, - unsigned int *num_filenames); +extern char **scanctx_cleanup(struct scan_context *ctx, + unsigned int *num_filenames); extern FILE *scanctx_push_include(struct scan_context *ctx, void *prev_buffer, const char **error); |