]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Fri, 8 Jul 2016 12:12:14 +0000 (12:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Fri, 8 Jul 2016 12:12:14 +0000 (12:12 +0000)
src/security/LockingPointer.h

index 3fd547bc114a65b4d6fc84fe5d6b2f0bfd28278a..69b94ee8ebdb78ce782551650ebd3f8cc159f5c6 100644 (file)
@@ -113,12 +113,12 @@ private:
     /// The lock() method increments Object's reference counter.
     void lock(T *t) {
 #if USE_OPENSSL
-            if (t)
-                CRYPTO_add(&t->references, 1, lockId);
+        if (t)
+            CRYPTO_add(&t->references, 1, lockId);
 #elif USE_GNUTLS
-            // XXX: GnuTLS does not provide locking ?
+        // XXX: GnuTLS does not provide locking ?
 #else
-            assert(false);
+        assert(false);
 #endif
     }