Commit 7a0fb40c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

taskschd: Use correct integral type.

parent d183986a
......@@ -158,7 +158,7 @@ static HRESULT WINAPI regtask_get_State(IRegisteredTask *iface, TASK_STATE *stat
if (!state) return E_POINTER;
return SchRpcGetTaskInfo(regtask->path, SCH_FLAG_STATE, &enabled, state);
return SchRpcGetTaskInfo(regtask->path, SCH_FLAG_STATE, &enabled, (DWORD *)state);
}
static HRESULT WINAPI regtask_get_Enabled(IRegisteredTask *iface, VARIANT_BOOL *v_enabled)
......
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