diff options
author | Pierre Ossman <ossman@cendio.se> | 2015-03-03 16:34:56 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2015-03-03 16:34:56 +0100 |
commit | fb450fba5d8737310a1f205ea3d38467dedf6afa (patch) | |
tree | 64408b35ce3d358703ff928975eebd4be319b5ba /win/winvnc | |
parent | 64624342d98c62563c2a78b117ce3fcea9b61e68 (diff) | |
download | tigervnc-fb450fba5d8737310a1f205ea3d38467dedf6afa.tar.gz tigervnc-fb450fba5d8737310a1f205ea3d38467dedf6afa.zip |
Fix mismatches between format string and arguments
Diffstat (limited to 'win/winvnc')
-rw-r--r-- | win/winvnc/winvnc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/winvnc/winvnc.cxx b/win/winvnc/winvnc.cxx index 17b3a91c..c2abd892 100644 --- a/win/winvnc/winvnc.cxx +++ b/win/winvnc/winvnc.cxx @@ -182,7 +182,7 @@ static void processParams(int argc, char** argv) { 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) || |