Stop warning about extra ';' outside of function.
diff --git a/crypto/ex_data.c b/crypto/ex_data.c
index 05e5ec3..9e7157d 100644
--- a/crypto/ex_data.c
+++ b/crypto/ex_data.c
@@ -253,13 +253,13 @@
 	{
 	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 */