Commit 5b88083a authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent f56e7a9b
......@@ -491,8 +491,8 @@ static BOOL load_job_data(const char *data, DWORD size, struct job_t *info)
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) + info->trigger_count * sizeof(TASK_TRIGGER)));
TRACE("trigger_offset %04x, triggers end at %04Ix\n", fixed->trigger_offset,
fixed->trigger_offset + sizeof(USHORT) + info->trigger_count * sizeof(TASK_TRIGGER));
info->trigger_count = *(const USHORT *)data;
TRACE("trigger_count %u\n", info->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