##// END OF EJS Templates
cext: change two more vars to Py_ssize_t in manifest.c...
Kyle Lippincott -
r44594:f0a4084f stable
parent child Browse files
Show More
@@ -80,7 +80,7 b' static PyObject *hashflags(line *l)'
80 80 PyObject *hash = nodeof(l);
81 81
82 82 /* 40 for hash, 1 for null byte, 1 for newline */
83 size_t hplen = plen + 42;
83 Py_ssize_t hplen = plen + 42;
84 84 Py_ssize_t flen = l->len - hplen;
85 85 PyObject *flags;
86 86 PyObject *tup;
@@ -525,7 +525,7 b' static int lazymanifest_setitem('
525 525 PyObject *pyflags;
526 526 char *flags;
527 527 Py_ssize_t flen;
528 size_t dlen;
528 Py_ssize_t dlen;
529 529 char *dest;
530 530 int i;
531 531 line new;
General Comments 0
You need to be logged in to leave comments. Login now