1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

pg_dump: Add some const qualifiers

This commit is contained in:
Peter Eisentraut
2012-02-07 23:20:29 +02:00
parent d66b31c94f
commit e09509bd33
3 changed files with 4 additions and 4 deletions

View File

@@ -767,7 +767,7 @@ main(int argc, char **argv)
if (plainText)
{
ropt = NewRestoreOptions();
ropt->filename = (char *) filename;
ropt->filename = filename;
ropt->dropSchema = outputClean;
ropt->aclsSkip = aclsSkip;
ropt->superuser = outputSuperuser;