##// END OF EJS Templates
parsers: avoid int/unsigned conversions...
Augie Fackler -
r26075:e7e71825 default
parent child Browse files
Show More
@@ -705,8 +705,8 b' typedef struct {'
705 705 PyObject *headrevs; /* cache, invalidated on changes */
706 706 PyObject *filteredrevs;/* filtered revs set */
707 707 nodetree *nt; /* base-16 trie */
708 int ntlength; /* # nodes in use */
709 int ntcapacity; /* # nodes allocated */
708 unsigned ntlength; /* # nodes in use */
709 unsigned ntcapacity; /* # nodes allocated */
710 710 int ntdepth; /* maximum depth of tree */
711 711 int ntsplits; /* # splits performed */
712 712 int ntrev; /* last rev scanned */
General Comments 0
You need to be logged in to leave comments. Login now