aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/objects/objects.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-10-18 15:02:59 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-10-18 15:02:59 +0000
commit111a6e2a23a3f9b9f9f0c5b1c945c4d7ca2dfa74 (patch)
tree3f07fbca5899f1e4739df320bab90c85d37fb4e1 /crypto/objects/objects.h
parentd764e7edb86dd2d9abc5db528408adb6cd789bed (diff)
downloadopenssl-111a6e2a23a3f9b9f9f0c5b1c945c4d7ca2dfa74.tar.gz
Fix multiple ; warning.
Diffstat (limited to 'crypto/objects/objects.h')
-rw-r--r--crypto/objects/objects.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/objects/objects.h b/crypto/objects/objects.h
index 55f65f29ce..7868023af1 100644
--- a/crypto/objects/objects.h
+++ b/crypto/objects/objects.h
@@ -1022,7 +1022,7 @@ const void * OBJ_bsearch_ex_(const void *key,const void *base,int num,
scope type1 *cmp##_type_1; \
scope type2 *cmp##_type_2; \
scope int cmp##_BSEARCH_CMP_FN(const void *, const void *); \
- scope int cmp(const type1 const *, const type2 const *);
+ scope int cmp(const type1 const *, const type2 const *)
#define DECLARE_OBJ_BSEARCH_CMP_FN(type1, type2, cmp) \
_DECLARE_OBJ_BSEARCH_CMP_FN(static, type1, type2, cmp)