diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-17 00:27:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-17 00:27:45 +0000 |
commit | e83265b32aed44b58e2ec89d8cf6e339be718217 (patch) | |
tree | d828fc6c3ac4e4758dda1168fea798ef7562ae0e | |
parent | 0b8b1fe3aababb9fbdf2d0e15f70ca41e1392fe4 (diff) | |
download | postgresql-e83265b32aed44b58e2ec89d8cf6e339be718217.tar.gz postgresql-e83265b32aed44b58e2ec89d8cf6e339be718217.zip |
Fix typo in change.
-rw-r--r-- | src/backend/catalog/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c index 6cbb61a4d8b..7fc6cb0464a 100644 --- a/src/backend/catalog/index.c +++ b/src/backend/catalog/index.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.73 1999/05/17 00:19:12 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.74 1999/05/17 00:27:45 momjian Exp $ * * * INTERFACE ROUTINES @@ -1187,7 +1187,7 @@ index_destroy(Oid indexId) */ ReleaseRelationBuffers(userindexRelation); - if (smgrunlink(userindexRelation) != SM_SUCCESS) + if (smgrunlink(DEFAULT_SMGR, userindexRelation) != SM_SUCCESS) elog(ERROR, "amdestroyr: unlink: %m"); index_close(userindexRelation); |