aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2012-06-18 23:39:21 +0200
committerChristopher Li <sparse@chrisli.org>2012-06-26 00:54:24 -0700
commit063236fd3f46bc83b49172f5ecb597e0a91cede8 (patch)
treecc1435e2ec9eb810d8d28dc2f127a4ffd4afa8eb
parentaba673f49e8b2b5d6a291c892efe581ae71fca6c (diff)
downloadsparse-063236fd3f46bc83b49172f5ecb597e0a91cede8.tar.gz
ptrlist.c: fix a typo in a comment
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Signed-off-by: Christopher Li <sparse@chrisli.org>
-rw-r--r--ptrlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ptrlist.c b/ptrlist.c
index 2620412f..5dc1117c 100644
--- a/ptrlist.c
+++ b/ptrlist.c
@@ -35,7 +35,7 @@ int ptr_list_size(struct ptr_list *head)
*
* The array to linearize into (second argument) should really
* be "void *x[]", but we want to let people fill in any kind
- * of pointer array, so let's just call it "void *".
+ * of pointer array, so let's just call it "void **".
*/
int linearize_ptr_list(struct ptr_list *head, void **arr, int max)
{