diff options
author | Steffen Jaeckel <jaeckel-floss@eyet-services.de> | 2022-03-22 10:44:02 +0100 |
---|---|---|
committer | Steffen Jaeckel <jaeckel-floss@eyet-services.de> | 2022-03-22 11:44:00 +0100 |
commit | b28ac093688d0d3dbda8aa9755e1b9b54ed01e05 (patch) | |
tree | 7e03a0175b8de17e0facdd027353d256b200f2b6 /tests/unittests | |
parent | 7c56eac154927e344c4720cad059e9a9752e16d5 (diff) | |
download | profani-tty-b28ac093688d0d3dbda8aa9755e1b9b54ed01e05.tar.gz |
a tad more `const`-correctness
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index 4557ac3a..cbe61bdf 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -649,11 +649,11 @@ jabber_get_tls_peer_cert(void) return NULL; } void -cons_show_tlscert(TLSCertificate* cert) +cons_show_tlscert(const TLSCertificate* cert) { } void -cons_show_tlscert_summary(TLSCertificate* cert) +cons_show_tlscert_summary(const TLSCertificate* cert) { } |