diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-05-14 14:46:33 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-05-14 20:17:14 +0900 |
commit | 1136925b2377925e4f6b83c4aeb2374e1d5bf32f (patch) | |
tree | 209f88ba43096b0a629759965e0d4bb82f52173b /mysqlc | |
parent | 9febe2cc5000046bf49b973efb3970013a5b84e1 (diff) |
initialized with plain 0, instead of sal_False/false
Change-Id: I2df1bd52293c4423de5ac4c41f9392be1e8d2ccf
Diffstat (limited to 'mysqlc')
-rw-r--r-- | mysqlc/source/mysqlc_preparedstatement.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysqlc/source/mysqlc_preparedstatement.cxx b/mysqlc/source/mysqlc_preparedstatement.cxx index 004acf9a3f40..31c0f8240ab3 100644 --- a/mysqlc/source/mysqlc_preparedstatement.cxx +++ b/mysqlc/source/mysqlc_preparedstatement.cxx @@ -207,7 +207,7 @@ sal_Int32 SAL_CALL OPreparedStatement::executeUpdate() MutexGuard aGuard(m_aMutex); checkDisposed(OPreparedStatement::rBHelper.bDisposed); - sal_Int32 affectedRows = sal_False; + sal_Int32 affectedRows = 0; try { affectedRows = ((sql::PreparedStatement *)cppStatement)->executeUpdate(); } catch (const sql::SQLException &e) { |