mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-09 18:15:08 +02:00
add a missing semi-colon for windows build
This commit is contained in:
parent
9912c4c9a7
commit
86b0b78692
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ int DTLSClientSession::verifyServerCertificate(gnutls_session_t session) {
|
|||
qDebug() << "Gnutls certificate verification status:" << reinterpret_cast<char *>(printOut.data);
|
||||
|
||||
#ifdef WIN32
|
||||
free(printOut.data)
|
||||
free(printOut.data);
|
||||
#else
|
||||
gnutls_free(printOut.data);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue