Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/TestSSLLocks/TestSSLLocks.cpp')
-rw-r--r--src/tests/TestSSLLocks/TestSSLLocks.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tests/TestSSLLocks/TestSSLLocks.cpp b/src/tests/TestSSLLocks/TestSSLLocks.cpp
index 7b9cc41a2..289138ea4 100644
--- a/src/tests/TestSSLLocks/TestSSLLocks.cpp
+++ b/src/tests/TestSSLLocks/TestSSLLocks.cpp
@@ -7,7 +7,6 @@
#include <QtTest>
#include "SSL.h"
-#include "QAtomicIntCompat.h"
#include <openssl/rand.h>
@@ -30,7 +29,7 @@ public:
void run() {
unsigned char buf[64];
- while (QAtomicIntLoad(*m_running) == 1) {
+ while (m_running->load() == 1) {
for (int i = 0; i < 1024; i++) {
if (m_seed) {
RAND_seed(buf, sizeof(buf));