From ac67346d0fb5e5ea359d34c2c9215bd1892455f3 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Fri, 25 Apr 2014 17:10:47 -0400 Subject: * maintMakefile, various: Improve constification of the codebase. --- rule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rule.c') diff --git a/rule.c b/rule.c index e5716c5..986ada7 100644 --- a/rule.c +++ b/rule.c @@ -357,7 +357,7 @@ void install_pattern_rule (struct pspec *p, int terminal) { struct rule *r; - char *ptr; + const char *ptr; r = xmalloc (sizeof (struct rule)); @@ -373,7 +373,7 @@ install_pattern_rule (struct pspec *p, int terminal) ++r->suffixes[0]; ptr = p->dep; - r->deps = PARSE_SIMPLE_SEQ (&ptr, struct dep); + r->deps = PARSE_SIMPLE_SEQ ((char **)&ptr, struct dep); if (new_pattern_rule (r, 0)) { -- cgit v1.2.3