Commit a8b0a5ea authored by Alexandre Julliard's avatar Alexandre Julliard

winedbg: Avoid using size_t in an error message.

parent 3d418add
......@@ -1396,7 +1396,7 @@ static enum packet_return packet_read_register(struct gdb_context* gdbctx)
if (reg >= cpu_num_regs)
{
if (gdbctx->trace & GDBPXY_TRC_COMMAND_ERROR)
fprintf(stderr, "Register out of bounds %x (%x)\n", reg, cpu_num_regs);
fprintf(stderr, "Register out of bounds %x\n", reg);
return packet_error;
}
if (dbg_curr_thread != gdbctx->other_thread && gdbctx->other_thread)
......
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