From 9322950aa44ef3647ccdd043cffe92cead171587 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 3 Feb 1999 21:18:02 +0000 Subject: Cleanup of source files where 'return' or 'var =' is alone on a line. --- src/backend/bootstrap/bootstrap.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/backend/bootstrap/bootstrap.c') diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index ff1c5afc10..4e6675bbba 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.53 1999/01/17 06:18:14 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.54 1999/02/03 21:15:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -855,8 +855,7 @@ gettype(char *type) static Form_pg_attribute /* XXX */ AllocateAttribute() { - Form_pg_attribute attribute = - (Form_pg_attribute) malloc(ATTRIBUTE_TUPLE_SIZE); + Form_pg_attribute attribute = (Form_pg_attribute) malloc(ATTRIBUTE_TUPLE_SIZE); if (!PointerIsValid(attribute)) elog(FATAL, "AllocateAttribute: malloc failed"); -- cgit v1.2.1