summaryrefslogtreecommitdiff
path: root/dev-db/recutils/files/recutils-1.9-add-const.patch
blob: b8c14845d11ea55f8b6f3ee78e49786c123ba597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Cast bash-generated argv from char ** to const char ** so it would be of the same
type argv was declared
https://bugs.gentoo.org/941542
--- a/bash/testrec.c
+++ b/bash/testrec.c
@@ -60,7 +60,7 @@
 
   /* Get arguments and verify them.  */
 
-  argv = make_builtin_argv (list, &argc);
+  argv = (const char**)make_builtin_argv (list, &argc);
   if ((argc != 3)
       || ((strcmp (argv[0], "[%") == 0) && ((strlen (argv[2]) == 2) && ((argv[2][0] != '%') || (argv[2][1] != ']')))))
     {