Mercurial > hg
changeset 13263:c45b5faa6213
parsers.c: fix comment
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 15 Jan 2011 12:44:28 +0100 |
parents | 2f532ea537a6 |
children | 8439526fb407 |
files | mercurial/parsers.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/parsers.c Sat Jan 15 12:28:10 2011 +0100 +++ b/mercurial/parsers.c Sat Jan 15 12:44:28 2011 +0100 @@ -352,8 +352,8 @@ inlined = inlined_obj && PyObject_IsTrue(inlined_obj); /* If no data is inlined, we know the size of the index list in - * advance: size divided by size of one one revlog record (64 bytes) - * plus one for the nullid */ + * advance: size divided by the size of one revlog record (64 bytes) + * plus one for nullid */ index = inlined ? PyList_New(0) : PyList_New(size / 64 + 1); if (!index) goto quit;