diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-10 15:09:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-10 15:09:14 +0200 |
commit | 7ba8d1469e331f07040352c069cf7b9d24ac57a3 (patch) | |
tree | 3fbd5ed0252f3d972d4838a8fc7197071a9f15fe /pgsql | |
parent | 66732b210c512b8dfe7e97d3ab6522cf3be72a72 (diff) |
Remove unneeded third argument to create_database()
Diffstat (limited to 'pgsql')
-rw-r--r-- | pgsql/native/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgsql/native/driver.cxx b/pgsql/native/driver.cxx index 10bf92d..94bda60 100644 --- a/pgsql/native/driver.cxx +++ b/pgsql/native/driver.cxx @@ -21,7 +21,7 @@ main (int argc, char* argv[]) { try { - auto_ptr<database> db (create_database (argc, argv, false)); + auto_ptr<database> db (create_database (argc, argv)); // Create the database schema. // |