From fb766b4428599dfdce7d435cdbe17c5b7d73c48b Mon Sep 17 00:00:00 2001 From: Georgi Tushev Date: Thu, 8 Sep 2016 01:00:49 +0200 Subject: [PATCH] fix const char* argv[] dependances --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 42e5498..2b0acc3 100644 --- a/config.h +++ b/config.h @@ -31,9 +31,9 @@ // define parameters typedef struct _Settings { - char *input; - char *maskpoly; - char *output; + const char *input; + const char *maskpoly; + const char *output; int64_t window; int64_t depth; int64_t sizepoly;