X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ftsearch.c;h=086ef53862a310d10b311e29f18937ac56afb5d3;hb=b344de996cd51f8a2f2558a3172016b64d99c622;hp=44b0d329f0f4f14a446d121c05eb49e7683ef3f0;hpb=6948250861edce048d7bb3c6b47d13fa3649905e;p=gnulib.git diff --git a/lib/tsearch.c b/lib/tsearch.c index 44b0d329f..086ef5386 100644 --- a/lib/tsearch.c +++ b/lib/tsearch.c @@ -1,4 +1,5 @@ -/* Copyright (C) 1995-1997, 2000, 2006-2007, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1995-1997, 2000, 2006-2007, 2009-2011 Free Software + Foundation, Inc. Contributed by Bernd Schmidt , 1997. NOTE: The canonical source of this file is maintained with the GNU C @@ -161,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); }