summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libc/stdlib/tfind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/tfind.c b/src/lib/libc/stdlib/tfind.c
index 8e77527bf5..9e5bd4b0f2 100644
--- a/src/lib/libc/stdlib/tfind.c
+++ b/src/lib/libc/stdlib/tfind.c
@@ -21,7 +21,7 @@ typedef struct node_t
21void * 21void *
22tfind(vkey, vrootp, compar) 22tfind(vkey, vrootp, compar)
23 const void *vkey; /* key to be found */ 23 const void *vkey; /* key to be found */
24 void **vrootp; /* address of the tree root */ 24 void *const *vrootp; /* address of the tree root */
25 int (*compar) __P((const void *, const void *)); 25 int (*compar) __P((const void *, const void *));
26{ 26{
27 char *key = (char *)vkey; 27 char *key = (char *)vkey;