Commit f56e7a9b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

mstask: Don't cast size_t to DWORD in trace, use %I instead.

parent 7f6adab1
......@@ -1396,8 +1396,8 @@ static HRESULT load_job_data(TaskImpl *This, BYTE *data, DWORD size)
data += sizeof(USHORT) + data_size;
/* Trigger Data */
TRACE("trigger_offset %04x, triggers end at %04lx\n", fixed->trigger_offset,
(DWORD)(fixed->trigger_offset + sizeof(USHORT) + trigger_count * sizeof(TASK_TRIGGER)));
TRACE("trigger_offset %04x, triggers end at %04Ix\n", fixed->trigger_offset,
fixed->trigger_offset + sizeof(USHORT) + trigger_count * sizeof(TASK_TRIGGER));
task_trigger = (TASK_TRIGGER *)(data + sizeof(USHORT));
......
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