[Zope-Checkins] CVS: Zope/lib/python/BTrees - sorters.c:1.2

Tim Peters tim.one@comcast.net
Thu, 30 May 2002 20:21:54 -0400


Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv14241

Modified Files:
	sorters.c 
Log Message:
sort_int4_nodups:  Fixed the declaration of the "work" temp.


=== Zope/lib/python/BTrees/sorters.c 1.1 => 1.2 ===
 {
 	size_t nunique;
-	size_t *work;
+	element_type *work;
 
 	assert(sizeof(int) == sizeof(element_type));
 	assert(p);