diff options
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); |