Skip to content

Commit

Permalink
remove semi-colons
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth authored Aug 22, 2024
1 parent cb03d03 commit e38a062
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crypto/refcount_c11.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@

// See comment above the typedef of CRYPTO_refcount_t about these tests.
OPENSSL_STATIC_ASSERT(alignof(CRYPTO_refcount_t) == alignof(_Atomic CRYPTO_refcount_t),
_Atomic_alters_the_needed_alignment_of_a_reference_count);
_Atomic_alters_the_needed_alignment_of_a_reference_count)
OPENSSL_STATIC_ASSERT(sizeof(CRYPTO_refcount_t) == sizeof(_Atomic CRYPTO_refcount_t),
_Atomic_alters_the_size_of_a_reference_count);
_Atomic_alters_the_size_of_a_reference_count)

OPENSSL_STATIC_ASSERT((CRYPTO_refcount_t)-1 == CRYPTO_REFCOUNT_MAX,
CRYPTO_REFCOUNT_MAX_is_incorrect);
CRYPTO_REFCOUNT_MAX_is_incorrect)

void CRYPTO_refcount_inc(CRYPTO_refcount_t *in_count) {
_Atomic CRYPTO_refcount_t *count = (_Atomic CRYPTO_refcount_t *) in_count;
Expand Down

0 comments on commit e38a062

Please sign in to comment.