diff lib/gl_avltree_list.c @ 12421:e8d2c6fc33ad

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Thu, 10 Dec 2009 20:28:30 +0100
parents 25f7280c9cf0
children a8c91b846640
line wrap: on
line diff
--- a/lib/gl_avltree_list.c
+++ b/lib/gl_avltree_list.c
@@ -47,8 +47,8 @@
   if (!(node->parent == parent))
     abort ();
   if (!(node->branch_size
-	== (node->left != NULL ? node->left->branch_size : 0)
-	   + 1 + (node->right != NULL ? node->right->branch_size : 0)))
+        == (node->left != NULL ? node->left->branch_size : 0)
+           + 1 + (node->right != NULL ? node->right->branch_size : 0)))
     abort ();
   if (!(balance >= -1 && balance <= 1))
     abort ();