Whitespace changes only.
[pspp] / src / libpspp / abt.h
index fced0179ae6a71c688c49d0c061721fe06ad29d9..f0a412773a0938b7348c75b1793e1e1f88ff8583 100644 (file)
      find_by_position (struct abt *abt, int position)
      {
        struct abt_node *p;
-       for (p = abt->root; p != NULL; )
+       for (p = abt->root; p != NULL;)
          {
            int p_pos = p->down[0] ? node_to_element (p->down[0])->count : 0;
            if (position == p_pos)