diff options
author | Pierre Ossman <ossman@cendio.se> | 2023-01-04 16:18:46 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2023-01-04 19:17:28 +0100 |
commit | 3a1c46ff751a96dfdc721190a93be3954929725e (patch) | |
tree | b4b60c322545aaee22506f1071048ad5a604b123 /common/rfb/LogWriter.cxx | |
parent | 225e1516f9cc5d2318e9a9cd7b84b69b0f150e43 (diff) | |
download | tigervnc-3a1c46ff751a96dfdc721190a93be3954929725e.tar.gz tigervnc-3a1c46ff751a96dfdc721190a93be3954929725e.zip |
Explicitly mark unused parameters
This allows us to separate accidentally unused, from explicitly unused
parameters, which allows us to turn on such checks in the compiler.
Diffstat (limited to 'common/rfb/LogWriter.cxx')
-rw-r--r-- | common/rfb/LogWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/LogWriter.cxx b/common/rfb/LogWriter.cxx index 7feee2fe..6df82d8e 100644 --- a/common/rfb/LogWriter.cxx +++ b/common/rfb/LogWriter.cxx @@ -51,7 +51,7 @@ void LogWriter::setLevel(int level) { } void -LogWriter::listLogWriters(int width) { +LogWriter::listLogWriters(int /*width*/) { // *** make this respect width... LogWriter* current = log_writers; fprintf(stderr, " "); |