1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Fix a couple of stray // comments.

This commit is contained in:
Tom Lane
2001-10-01 17:53:12 +00:00
parent 77d2622498
commit 6d18c038b7
2 changed files with 6 additions and 8 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/contrib/rtree_gist/Attic/rtree_gist.c,v 1.2 2001/08/22 18:24:26 tgl Exp $
* $Header: /cvsroot/pgsql/contrib/rtree_gist/Attic/rtree_gist.c,v 1.3 2001/10/01 17:53:11 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -275,13 +275,11 @@ gbox_picksplit(PG_FUNCTION_ARGS)
sizeLR = size_box( interLR );
sizeBT = size_box( interBT );
if ( sizeLR < sizeBT ) {
if ( sizeLR < sizeBT )
direction = 'x';
//} else if ( sizeLR > sizeBT ) {
} else {
else
direction = 'y';
}
}
}
if ( direction == 'x' ) {
pfree( unionB ); pfree( listB );