connectivity/source/drivers/dbase/DTable.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c3d1c45e51c102b893bc2e2d7a9102d8d2e4e886 Author: Julien Nabet <[email protected]> Date: Sun Mar 17 07:17:27 2013 +0100 coverity#705135 Missing break in switch Change-Id: Ie610b3b10b5d83b772ad96e455d59360368086a4 Reviewed-on: https://gerrit.libreoffice.org/2779 Reviewed-by: Fridrich Strba <[email protected]> Tested-by: Fridrich Strba <[email protected]> diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx index 52f5195..ee2d7df 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; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
