summaryrefslogtreecommitdiffstats
path: root/apps
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 /apps
parentdd043cd501bb3acff0e5f2ec1262bf862d9a68c5 (diff)
Stop warning about extra ';' outside of function.
Diffstat (limited to 'apps')
-rw-r--r--apps/openssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/openssl.c b/apps/openssl.c
index 2747b67197..dcfb796176 100644
--- a/apps/openssl.c
+++ b/apps/openssl.c
@@ -595,13 +595,13 @@ static int MS_CALLBACK function_cmp(const FUNCTION *a, const FUNCTION *b)
{
return strncmp(a->name,b->name,8);
}
-static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION);
+static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION)
static unsigned long MS_CALLBACK function_hash(const FUNCTION *a)
{
return lh_strhash(a->name);
}
-static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION);
+static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION)
static LHASH_OF(FUNCTION) *prog_init(void)
{