Commit 8e3d4910 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

oledb32: Use correct integral type.

parent 23f9d01a
......@@ -313,7 +313,7 @@ static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
case DBTYPE_I4:
{
signed int *d = dst;
LONG *d = dst;
switch(src_type)
{
case DBTYPE_EMPTY: *d = 0; hr = S_OK; break;
......
......@@ -677,7 +677,7 @@ HRESULT get_data_source(IUnknown *outer, DWORD clsctx, LPWSTR initstring, REFIID
if (*datasource && prov)
{
DBPROPIDSET propidset;
enum DBPROPENUM prop;
DWORD prop;
CLSID initprov;
ULONG count;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment