From: Alistair Leslie-Hughes Subject: [PATCH 3/3] oledb32: Add FIXME for DBTYPE_NUMERIC type Message-Id: Date: Wed, 21 Jun 2017 00:32:58 +0000 In-Reply-To: <20170621003221.15295-1-leslie_alistair@hotmail.com> References: <20170621003221.15295-1-leslie_alistair@hotmail.com> The break is not required. Signed-off-by: Alistair Leslie-Hughes --- dlls/oledb32/convert.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dlls/oledb32/convert.c b/dlls/oledb32/convert.c index 59b2ecd9bd..a5fe30d997 100644 --- a/dlls/oledb32/convert.c +++ b/dlls/oledb32/convert.c @@ -1081,7 +1081,11 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface, } break; } - break; + case DBTYPE_NUMERIC: + { + FIXME("Unimplemented conversion %04x -> DBTYPE_NUMERIC\n", src_type); + return E_NOTIMPL; + } default: FIXME("Unimplemented conversion %04x -> %04x\n", src_type, dst_type); -- 2.11.0