]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/commitdiff
Delete should be void not void *.
authorSimon Tatham <anakin@pobox.com>
Fri, 15 Sep 2000 10:48:42 +0000 (10:48 +0000)
committerSimon Tatham <anakin@pobox.com>
Fri, 15 Sep 2000 10:48:42 +0000 (10:48 +0000)
git-svn-id: http://svn.tartarus.org/sgt/putty@593 cda61777-01e9-0310-a592-d414129be87e

tree234.h

index 2acdaa6abfa6b8dd2c07980718a61cc555e10b9a..6675e982cfec1027d96cab9948d7616b1d8687ea 100644 (file)
--- a/tree234.h
+++ b/tree234.h
@@ -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,
  * 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.