1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-02-03 21:52:24 +00:00

Delete should be void not void *.

[originally from svn r593]
This commit is contained in:
Simon Tatham 2000-09-15 10:48:42 +00:00
parent c96384efe0
commit 1ff320c8b2

View File

@ -55,7 +55,7 @@ void *find234(tree234 *t, void *e, cmpfn234 cmp);
* Delete an element e in a 2-3-4 tree. Does not free the element, * Delete an element e in a 2-3-4 tree. Does not free the element,
* merely removes all links to it from the tree nodes. * merely removes all links to it from the tree nodes.
*/ */
void *del234(tree234 *t, void *e); void del234(tree234 *t, void *e);
/* /*
* Iterate over the elements of a tree234, in order. * Iterate over the elements of a tree234, in order.