Browse Source

Use correct type for format string

tags/v1.5.90
Pierre Ossman 8 years ago
parent
commit
023df7effb
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      win/rfb_win32/WMHooks.cxx

+ 3
- 1
win/rfb_win32/WMHooks.cxx View File

@@ -265,7 +265,9 @@ WMHooksThread::run() {
NotifyHooksCursor((HCURSOR)msg.lParam);
#ifdef _DEBUG
} else if (msg.message == diagnosticMsg) {
vlog.info("DIAG msg=%x(%d) wnd=%lx", msg.wParam, msg.wParam, msg.lParam);
vlog.info("DIAG msg=%x(%d) wnd=%lx",
(unsigned)msg.wParam, (int)msg.wParam,
(unsigned long)msg.lParam);
#endif
}
}

Loading…
Cancel
Save