commit | fb450fba5d8737310a1f205ea3d38467dedf6afa | [log] [tgz] |
---|---|---|
author | Pierre Ossman <ossman@cendio.se> | Tue Mar 03 16:34:56 2015 +0100 |
committer | Pierre Ossman <ossman@cendio.se> | Tue Mar 03 16:34:56 2015 +0100 |
tree | 64408b35ce3d358703ff928975eebd4be319b5ba | |
parent | 64624342d98c62563c2a78b117ce3fcea9b61e68 [diff] [blame] |
Fix mismatches between format string and arguments
diff --git a/win/winvnc/winvnc.cxx b/win/winvnc/winvnc.cxx index 17b3a91..c2abd89 100644 --- a/win/winvnc/winvnc.cxx +++ b/win/winvnc/winvnc.cxx
@@ -182,7 +182,7 @@ close_console = true; vlog.info("closing console"); if (!FreeConsole()) - vlog.info("unable to close console:%u", GetLastError()); + vlog.info("unable to close console:%lu", GetLastError()); } else if ((strcasecmp(argv[i], "-help") == 0) || (strcasecmp(argv[i], "--help") == 0) ||