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 | a3ed91972fff7df6043b15505f3263cc60c5ac3e (patch) | |
tree | 4f7d2d2964c2de2a55870ca2162690b0e632aafd | |
parent | 506b5a295072e59f5f80a7183d8ce5aecb96d7fa (diff) |
OSL_TRACE: Use format string
-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 889a376..82536d8 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) { |