diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-11 09:40:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-11 09:40:33 +0200 |
commit | 287e5033f3dc317ae3adf4a4113ca729e7ab243c (patch) | |
tree | 204d32ccd343a72739febfaf72ad15e9f3739830 /connectivity | |
parent | e329fb05bc23ab2ceb1a0f550d6baa09e27510cc (diff) |
loplugin:unnecessaryparen
Change-Id: I6ea2cf715095e5f686fa8a4262682553e9a293ac
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/DatabaseMetaData.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx index 802316fa84dc..be811407e5e9 100644 --- a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx +++ b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx @@ -1199,7 +1199,7 @@ uno::Reference< XResultSet > SAL_CALL ODatabaseMetaData::getColumns( // 9. Decimal digits (scale) // fb stores a negative number - aCurrentRow[9] = new ORowSetValueDecorator( (sal_Int16) -(aScale) ); + aCurrentRow[9] = new ORowSetValueDecorator( (sal_Int16) -aScale ); // 11. Nullable if (xRow->getShort(11)) |