ceilf-ieee: Work around bug on MacOS X 10.5.
[pspp] / lib / tsearch.c
index 64c0c2567645b4ec711c884190923e4d3a3acb77..086ef53862a310d10b311e29f18937ac56afb5d3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-1997, 2000, 2006-2007, 2009-2010 Free Software
+/* Copyright (C) 1995-1997, 2000, 2006-2007, 2009-2011 Free Software
    Foundation, Inc.
    Contributed by Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>, 1997.
 
@@ -162,7 +162,7 @@ check_tree (node root)
   if (root == NULL)
     return;
   root->red = 0;
-  for(p = root->left; p; p = p->left)
+  for (p = root->left; p; p = p->left)
     cnt += !p->red;
   check_tree_recurse (root, 0, cnt);
 }