summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-05-31 19:17:25 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-05-31 19:17:25 +0000
commitab3eafd5b5fbbb89fb500f05b8776f26a9f5e028 (patch)
tree08b59146d637818be58641474ae72d807eaa61d8 /crypto/err
parentdd043cd501bb3acff0e5f2ec1262bf862d9a68c5 (diff)
Stop warning about extra ';' outside of function.
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c
index 66d4da8556..94784e972d 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -337,14 +337,14 @@ static unsigned long err_string_data_hash(const ERR_STRING_DATA *a)
ret=l^ERR_GET_LIB(l)^ERR_GET_FUNC(l);
return(ret^ret%19*13);
}
-static IMPLEMENT_LHASH_HASH_FN(err_string_data, ERR_STRING_DATA);
+static IMPLEMENT_LHASH_HASH_FN(err_string_data, ERR_STRING_DATA)
static int err_string_data_cmp(const ERR_STRING_DATA *a,
const ERR_STRING_DATA *b)
{
return (int)(a->error - b->error);
}
-static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA);
+static IMPLEMENT_LHASH_COMP_FN(err_string_data, ERR_STRING_DATA)
static LHASH_OF(ERR_STRING_DATA) *int_err_get(int create)
{
@@ -430,13 +430,13 @@ static unsigned long err_state_hash(const ERR_STATE *a)
{
return CRYPTO_THREADID_hash(&a->tid);
}
-static IMPLEMENT_LHASH_HASH_FN(err_state, ERR_STATE);
+static IMPLEMENT_LHASH_HASH_FN(err_state, ERR_STATE)
static int err_state_cmp(const ERR_STATE *a, const ERR_STATE *b)
{
return CRYPTO_THREADID_cmp(&a->tid, &b->tid);
}
-static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE);
+static IMPLEMENT_LHASH_COMP_FN(err_state, ERR_STATE)
static LHASH_OF(ERR_STATE) *int_thread_get(int create)
{