[Zodb-checkins] CVS: ZODB3/Persistence - ring.c:1.1.2.2 ring.h:1.1.2.2

Tim Peters tim.one at comcast.net
Wed Jul 9 17:31:58 EDT 2003


Update of /cvs-repository/ZODB3/Persistence
In directory cvs.zope.org:/tmp/cvs-serv19524/Persistence

Modified Files:
      Tag: zodb33-devel-branch
	ring.c ring.h 
Log Message:
Trimmed trailing whitespace.


=== ZODB3/Persistence/ring.c 1.1.2.1 => 1.1.2.2 ===
--- ZODB3/Persistence/ring.c:1.1.2.1	Wed Jul  9 15:38:13 2003
+++ ZODB3/Persistence/ring.c	Wed Jul  9 16:31:52 2003
@@ -12,7 +12,7 @@
 
  ****************************************************************************/
 
-/* Support routines for the doubly-linked list of cached objects. 
+/* Support routines for the doubly-linked list of cached objects.
 
 The cache stores a doubly-linked list of persistent objects, with
 space for the pointers allocated in the objects themselves.  The cache
@@ -28,7 +28,7 @@
 #include "Python.h"
 #include "ring.h"
 
-void 
+void
 ring_add(CPersistentRing *ring, CPersistentRing *elt)
 {
     assert(!elt->next);
@@ -38,7 +38,7 @@
     ring->prev = elt;
 }
 
-void 
+void
 ring_del(CPersistentRing *elt)
 {
     elt->next->prev = elt->prev;
@@ -47,7 +47,7 @@
     elt->prev = NULL;
 }
 
-void 
+void
 ring_move_to_head(CPersistentRing *ring, CPersistentRing *elt)
 {
     elt->prev->next = elt->next;


=== ZODB3/Persistence/ring.h 1.1.2.1 => 1.1.2.2 ===
--- ZODB3/Persistence/ring.h:1.1.2.1	Wed Jul  9 15:38:13 2003
+++ ZODB3/Persistence/ring.h	Wed Jul  9 16:31:52 2003
@@ -12,7 +12,7 @@
 
  ****************************************************************************/
 
-/* Support routines for the doubly-linked list of cached objects. 
+/* Support routines for the doubly-linked list of cached objects.
 
 The cache stores a doubly-linked list of persistent objects, with
 space for the pointers allocated in the objects themselves.  The cache




More information about the Zodb-checkins mailing list