diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-07-20 16:14:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-07-20 16:14:18 +0000 |
commit | 34797d42253d488423b7a86a4a8335786b65cb59 (patch) | |
tree | 88248a102dd977ce60b0910a1fc83089e4845f09 /src/backend/access/gist/gist.c | |
parent | 7193719b4f51703039f37f1f535913dee1122aaa (diff) | |
download | postgresql-34797d42253d488423b7a86a4a8335786b65cb59.tar.gz |
Cleanup Name usage.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index dc2b57d4df..efa5286c1f 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -130,7 +130,7 @@ gistbuild(Relation heap, */ if (oldPred == NULL && (nb = RelationGetNumberOfBlocks(index)) != 0) - elog(ERROR, "%.16s already contains data", &(index->rd_rel->relname.data[0])); + elog(ERROR, "%s already contains data", index->rd_rel->relname.data); /* initialize the root page (if this is a new index) */ if (oldPred == NULL) |