diff options
author | Tom Lane | 2006-04-09 22:01:19 +0000 |
---|---|---|
committer | Tom Lane | 2006-04-09 22:01:19 +0000 |
commit | 848692131a7081d789aa4e58e4cc5ec94c4f520a (patch) | |
tree | ea286750173962097be38d4b72046766ad8f3acd | |
parent | a894a833812329a61ebe85fa1d0f84bf5dfb251e (diff) |
Fix another const-decoration mismatch, per Magnus.
-rw-r--r-- | src/include/commands/schemacmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/schemacmds.h b/src/include/commands/schemacmds.h index 0ac0a410f8f..ae7f481261e 100644 --- a/src/include/commands/schemacmds.h +++ b/src/include/commands/schemacmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/schemacmds.h,v 1.13 2006/03/05 15:58:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/schemacmds.h,v 1.14 2006/04/09 22:01:19 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -24,6 +24,6 @@ extern void RemoveSchemaById(Oid schemaOid); extern void RenameSchema(const char *oldname, const char *newname); extern void AlterSchemaOwner(const char *name, Oid newOwnerId); -extern void AlterSchemaOwner_oid(const Oid schemaOid, Oid newOwnerId); +extern void AlterSchemaOwner_oid(Oid schemaOid, Oid newOwnerId); #endif /* SCHEMACMDS_H */ |