diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-03 21:18:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-03 21:18:02 +0000 |
commit | 9322950aa44ef3647ccdd043cffe92cead171587 (patch) | |
tree | ca69b5d9a1278312e21f9e68ce4ac1e236212495 /src/backend/bootstrap/bootstrap.c | |
parent | 3982368a4e2ae08659c1bd7536c91ec9c08a6139 (diff) | |
download | postgresql-9322950aa44ef3647ccdd043cffe92cead171587.tar.gz postgresql-9322950aa44ef3647ccdd043cffe92cead171587.zip |
Cleanup of source files where 'return' or 'var =' is alone on a line.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index ff1c5afc103..4e6675bbba9 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"); |