Commit b7f5e4ae authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mstask: Avoid using the comma operator.

parent f43a0ef3
......@@ -345,7 +345,7 @@ static HRESULT WINAPI MSTASK_ITask_CreateTrigger(ITask *iface, WORD *idx, ITaskT
new_trigger->wStartHour = time.wHour;
new_trigger->wStartMinute = time.wMinute;
new_trigger->rgFlags = TASK_TRIGGER_FLAG_DISABLED;
new_trigger->TriggerType = TASK_TIME_TRIGGER_DAILY,
new_trigger->TriggerType = TASK_TIME_TRIGGER_DAILY;
new_trigger->Type.Daily.DaysInterval = 1;
*idx = This->trigger_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