summaryrefslogtreecommitdiff
path: root/dev-util/min-cscope/files/min-cscope-16.1.0-pointer-type.patch
blob: 6d54b253b501995d6383c210d7b09503e95c8e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
Fix build with -Werror=incompatible-pointer-types that's due
to become a default on clang16.

https://bugs.gentoo.org/871162
--- a/src/exec.c
+++ b/src/exec.c
@@ -75,3 +75,3 @@
 	int	exitcode = -1;	/* initialize, to avoid warning */
-	const char	*argv[BUFSIZ];
+	char	*argv[BUFSIZ];
 	pid_t	p;