diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 12:35:14 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 14:12:21 +0100 |
commit | a0ae1cebf6c41a5257c3ddb3bd78e32ffc17c0fa (patch) | |
tree | e7b5c223a6db9981b67a935dc6070972026eacd3 /mysqlc/source/mysqlc_connection.cxx | |
parent | 891c7201150f88a9f91e8e57b0b57e0edb96df2b (diff) |
OSL_TRACE: Use format string
Diffstat (limited to 'mysqlc/source/mysqlc_connection.cxx')
-rw-r--r-- | mysqlc/source/mysqlc_connection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index df6f25dba0c8..3bb2ff74dfb0 100644 --- a/mysqlc/source/mysqlc_connection.cxx +++ b/mysqlc/source/mysqlc_connection.cxx @@ -245,7 +245,7 @@ void OConnection::construct(const OUString& url, const Sequence< PropertyValue > } m_settings.schema = aDbName; - OSL_TRACE(OUStringToOString(m_settings.schema, getConnectionEncoding()).getStr()); + OSL_TRACE("%s", OUStringToOString(m_settings.schema, getConnectionEncoding()).getStr()); // Check if the server is 4.1 or above if (this->getMysqlVersion() < 40100) { |