cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/src ChangeLog hash.h


From: Mark D. Baushke
Subject: [Cvs-cvs] ccvs/src ChangeLog hash.h
Date: Sat, 19 Aug 2006 15:42:19 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Changes by:     Mark D. Baushke <mdb>   06/08/19 15:42:19

Modified files:
        src            : ChangeLog hash.h 

Log message:
        * hash.h (struct hashnode): Use struct hashnode * as the prototype
        argument for the delproc function.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/ChangeLog?cvsroot=cvs&r1=1.3478&r2=1.3479
http://cvs.savannah.gnu.org/viewcvs/ccvs/src/hash.h?cvsroot=cvs&r1=1.23&r2=1.24

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/ChangeLog,v
retrieving revision 1.3478
retrieving revision 1.3479
diff -u -b -r1.3478 -r1.3479
--- ChangeLog   17 Aug 2006 18:08:25 -0000      1.3478
+++ ChangeLog   19 Aug 2006 15:42:18 -0000      1.3479
@@ -1,3 +1,8 @@
+2006-08-19  Mark D. Baushke  <address@hidden>
+
+       * hash.h (struct hashnode): Use struct hashnode * as the prototype
+       argument for the delproc function.
+
 2006-08-17  Larry Jones  <address@hidden>
 
        * hash.h: Rename structs node and list to hashnode and hashlist

Index: hash.h
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/hash.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- hash.h      17 Aug 2006 18:08:25 -0000      1.23
+++ hash.h      19 Aug 2006 15:42:19 -0000      1.24
@@ -42,7 +42,7 @@
     char *key;
     void *data;
     size_t len;                        /* Length of DATA.  */
-    void (*delproc) (struct node *);
+    void (*delproc) (struct hashnode *);
 };
 typedef struct hashnode Node;
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]