Rémi Bernon (@rbernon) commented about dlls/user32/tests/msg.c:
} else {
RECT *r = (RECT*)msg->lParam;
sprintf(seq->output, "%s: %p WM_NCCALCSIZE: (%d,%d)-(%d,%d)",
msg->descr, msg->hwnd,
(int)r->left, (int)r->top, (int)r->right, (int)r->bottom);
```suggestion:-2+0 RECT *rect = (RECT *)msg->lParam;
sprintf( seq->output, "%s: %p WM_NCCALCSIZE: %s", msg->descr, msg->hwnd, wine_dbgstr_rect( rect ) ); ```