summaryrefslogtreecommitdiffstats
path: root/crypto/ex_data.c
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/ex_data.c
parentdd043cd501bb3acff0e5f2ec1262bf862d9a68c5 (diff)
Stop warning about extra ';' outside of function.
Diffstat (limited to 'crypto/ex_data.c')
-rw-r--r--crypto/ex_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ex_data.c b/crypto/ex_data.c
index 05e5ec346b..9e7157da1f 100644
--- a/crypto/ex_data.c
+++ b/crypto/ex_data.c
@@ -253,13 +253,13 @@ static unsigned long ex_class_item_hash(const EX_CLASS_ITEM *a)
{
return a->class_index;
}
-static IMPLEMENT_LHASH_HASH_FN(ex_class_item, EX_CLASS_ITEM);
+static IMPLEMENT_LHASH_HASH_FN(ex_class_item, EX_CLASS_ITEM)
static int ex_class_item_cmp(const EX_CLASS_ITEM *a, const EX_CLASS_ITEM *b)
{
return a->class_index - b->class_index;
}
-static IMPLEMENT_LHASH_COMP_FN(ex_class_item, EX_CLASS_ITEM);
+static IMPLEMENT_LHASH_COMP_FN(ex_class_item, EX_CLASS_ITEM)
/* Internal functions used by the "impl_default" implementation to access the
* state */