mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-24 04:03:34 -04:00
16 lines
350 B
C
16 lines
350 B
C
$NetBSD: patch-listmgt.c,v 1.1 2013/11/29 23:13:56 dholland Exp $
|
|
|
|
Fix const correctness.
|
|
|
|
--- listmgt.c~ 2009-03-08 14:25:53.000000000 +0000
|
|
+++ listmgt.c
|
|
@@ -90,7 +90,7 @@ entry_search(Etree **etree, int cont)
|
|
}
|
|
|
|
Etree **
|
|
-build_tree_from_list(const char **list)
|
|
+build_tree_from_list(const char *const *list)
|
|
{
|
|
int i, count, len;
|
|
char *p;
|