summaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.c
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2020-12-20 18:23:24 +0000
committerrillig <rillig@NetBSD.org>2020-12-20 18:23:24 +0000
commit09158680ce7145c6272ac34ffc1282ddc01cd2cb (patch)
treeccbc87af068297a2378192f12daa594426072590 /usr.bin/make/parse.c
parent699eabe7890632301fb292c4adb2f70f41d434d7 (diff)
make(1): remove redundant const declarations for parameters
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r--usr.bin/make/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index 87a7f1f9d60..cc4ba763edb 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.507 2020/12/20 14:52:16 rillig Exp $ */
+/* $NetBSD: parse.c,v 1.508 2020/12/20 18:23:24 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -117,7 +117,7 @@
#include "pathnames.h"
/* "@(#)parse.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: parse.c,v 1.507 2020/12/20 14:52:16 rillig Exp $");
+MAKE_RCSID("$NetBSD: parse.c,v 1.508 2020/12/20 18:23:24 rillig Exp $");
/* types and constants */
@@ -2724,7 +2724,7 @@ ParseRawLine(IFile *curFile, char **out_line, char **out_line_end,
* with a single space.
*/
static void
-UnescapeBackslash(char *const line, char *start)
+UnescapeBackslash(char *line, char *start)
{
char *src = start;
char *dst = start;