diff options
author | Madeleine Nilsson <madni@cendio.se> | 2024-11-04 15:00:43 +0100 |
---|---|---|
committer | Madeleine Nilsson <madni@cendio.se> | 2024-11-21 17:38:35 +0100 |
commit | 0af41e7fed978f934f3dc6ca8c99599a212467c5 (patch) | |
tree | b59907e4e0c4bbbef45346794a890f17009c117f /win/winvnc/winvnc.cxx | |
parent | 5b74bf1bbd4aef9f71ef76b718c79fe7b09bf5f5 (diff) | |
download | tigervnc-0af41e7fed978f934f3dc6ca8c99599a212467c5.tar.gz tigervnc-0af41e7fed978f934f3dc6ca8c99599a212467c5.zip |
Capitalize first letter in log, exception & error
The reason for this is to keep a consistency through out the project.
Diffstat (limited to 'win/winvnc/winvnc.cxx')
-rw-r--r-- | win/winvnc/winvnc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/winvnc/winvnc.cxx b/win/winvnc/winvnc.cxx index e2abae19..653ec675 100644 --- a/win/winvnc/winvnc.cxx +++ b/win/winvnc/winvnc.cxx @@ -199,9 +199,9 @@ static void processParams(int argc, char** argv) { } else if (strcasecmp(argv[i], "-noconsole") == 0) { close_console = true; - vlog.info("closing console"); + vlog.info("Closing console"); if (!FreeConsole()) - vlog.info("unable to close console:%lu", GetLastError()); + vlog.info("Unable to close console:%lu", GetLastError()); } else if ((strcasecmp(argv[i], "-help") == 0) || (strcasecmp(argv[i], "--help") == 0) || |