summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-03-17 07:17:27 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-18 07:42:44 +0000
commitc3d1c45e51c102b893bc2e2d7a9102d8d2e4e886 (patch)
treebe591f9b372e150128eae5f0ea913129d90124c0 /connectivity
parent30fded6a91c8803f656a50755b9e83a1e07edc08 (diff)
coverity#705135 Missing break in switch
Change-Id: Ie610b3b10b5d83b772ad96e455d59360368086a4 Reviewed-on: https://gerrit.libreoffice.org/2779 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 52f5195c2ba0..ee2d7df1209a 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -353,8 +353,8 @@ OSL_TRACE("column type: %c",aDBFColumn.db_typ);
aTypeName = "VARCHAR";
break;
case 'F':
- aTypeName = "DECIMAL";
case 'N':
+ aTypeName = "DECIMAL";
if ( aDBFColumn.db_typ == 'N' )
aTypeName = "NUMERIC";
eType = DataType::DECIMAL;