Patch from Ben Hutchings: explicitly initialise something which some

gccs complained about.

[originally from svn r8923]
This commit is contained in:
Simon Tatham
2010-04-18 15:07:52 +00:00
parent 0a9b0a7384
commit b7e0d854fe

View File

@ -1160,7 +1160,7 @@ tree234 *join234r(tree234 *t1, tree234 *t2) {
* in t. * in t.
*/ */
static node234 *split234_internal(tree234 *t, int index) { static node234 *split234_internal(tree234 *t, int index) {
node234 *halves[2], *n, *sib, *sub; node234 *halves[2] = { NULL, NULL }, *n, *sib, *sub;
node234 *lparent, *rparent; node234 *lparent, *rparent;
int ki, pki, i, half, lcount, rcount; int ki, pki, i, half, lcount, rcount;