From 8c314eb61df76fbd23ec060214976c59dfaffe77 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 19 Mar 2010 22:14:42 -0700 Subject: [PATCH] bt: Improve code formatting. --- src/libpspp/bt.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/libpspp/bt.c b/src/libpspp/bt.c index 751c8fe764..997083b1a0 100644 --- a/src/libpspp/bt.c +++ b/src/libpspp/bt.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2007, 2009 Free Software Foundation, Inc. + Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -81,9 +81,7 @@ static inline int calculate_h_alpha (size_t); /* Initializes BT as an empty BT that uses the given COMPARE function, passing in AUX as auxiliary data. */ void -bt_init (struct bt *bt, - bt_compare_func *compare, - const void *aux) +bt_init (struct bt *bt, bt_compare_func *compare, const void *aux) { bt->root = NULL; bt->compare = compare; -- 2.30.2