浏览代码

Use correct type for format string

tags/v1.5.90
Pierre Ossman 8 年前
父节点
当前提交
023df7effb
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      win/rfb_win32/WMHooks.cxx

+ 3
- 1
win/rfb_win32/WMHooks.cxx 查看文件

@@ -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
}
}

正在加载...
取消
保存