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 /mysql | |
parent | 66732b210c512b8dfe7e97d3ab6522cf3be72a72 (diff) |
Remove unneeded third argument to create_database()
Diffstat (limited to 'mysql')
-rw-r--r-- | mysql/native/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql/native/driver.cxx b/mysql/native/driver.cxx index 4ffe447..a8d2f5f 100644 --- a/mysql/native/driver.cxx +++ b/mysql/native/driver.cxx @@ -22,7 +22,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. // |