diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-14 08:05:36 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-14 08:05:36 +0000 |
commit | 05b0f22900ad45bda04caa04f7094ebcf81da0f5 (patch) | |
tree | 3f1101b81565da1b931d5f187c8ab7d1edd7c4c5 /src/backend/bootstrap/bootstrap.c | |
parent | 025f281dca9e36dfe6d6b2fa7287553352f606fd (diff) | |
download | postgresql-05b0f22900ad45bda04caa04f7094ebcf81da0f5.tar.gz postgresql-05b0f22900ad45bda04caa04f7094ebcf81da0f5.zip |
Eliminate dupliclate definition of external variables reldesc and DataDir.
Some compilers recognize this error.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index b7c25f6633e..f66366ca3a4 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.13 1996/12/26 22:06:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.14 1997/01/14 08:04:42 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -184,7 +184,6 @@ static struct typmap *Ap = (struct typmap *)NULL; static int Warnings = 0; static char Blanks[MAXATTR]; -Relation reldesc; /* current relation descriptor */ static char *relname; /* current relation name */ AttributeTupleForm attrtypes[MAXATTR]; /* points to attribute info */ |