diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-11-18 16:04:42 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-11-18 16:04:42 +0100 |
commit | 1e8017afd09fb15cabe7e33489875d6d75a78f2c (patch) | |
tree | b76799f653d52d7e253c302c12e1ad3599144ce3 | |
parent | 1f24dd8b9014560ce0e740b862f6e687a963493e (diff) | |
download | tigervnc-1e8017afd09fb15cabe7e33489875d6d75a78f2c.tar.gz tigervnc-1e8017afd09fb15cabe7e33489875d6d75a78f2c.zip |
Make arguments as unused without GnuTLS
-rw-r--r-- | vncviewer/OptionsDialog.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vncviewer/OptionsDialog.cxx b/vncviewer/OptionsDialog.cxx index e04065ec..a7e2de2f 100644 --- a/vncviewer/OptionsDialog.cxx +++ b/vncviewer/OptionsDialog.cxx @@ -794,6 +794,11 @@ void OptionsDialog::createSecurityPage(int tx, int ty, int tw, int th) ty += INNER_MARGIN; group->end(); +#else + (void)tx; + (void)ty; + (void)tw; + (void)th; #endif } |