~ubuntu-branches/ubuntu/quantal/sgt-puzzles/quantal

« back to all changes in this revision

Viewing changes to tree234.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings
  • Date: 2011-03-01 04:16:54 UTC
  • mfrom: (1.2.9 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20110301041654-949qy9qrroziy7vq
* New upstream version:
  - Add Range and Signpost puzzles
  - Use stock icons and conventional order for dialog buttons
  - Use Cairo for screen rendering
* Update German translation, thanks to Helge Kreutzmann
* Remove or update patches applied or partially applied upstream
* Use Debian source format 3.0 (quilt)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1160
1160
 * in t.
1161
1161
 */
1162
1162
static node234 *split234_internal(tree234 *t, int index) {
1163
 
    node234 *halves[2], *n, *sib, *sub;
 
1163
    node234 *halves[2] = { NULL, NULL }, *n, *sib, *sub;
1164
1164
    node234 *lparent, *rparent;
1165
1165
    int ki, pki, i, half, lcount, rcount;
1166
1166