summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2000-12-04 04:54:59 +0000
committerGeoff Thorpe <geoff@openssl.org>2000-12-04 04:54:59 +0000
commitebff44b83a93eb86fc0fc3ef2b394b683ca4308b (patch)
tree7c2b04663d77ac45dae6acf686828dda3a220173 /doc
parentc0e7c3aab91105243f36bef8e1c4498776c2b9b6 (diff)
Sync up with a minor change in lhash.h
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/lhash.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/lhash.pod b/doc/crypto/lhash.pod
index f8eaec2fe3..8c4ca6ab33 100644
--- a/doc/crypto/lhash.pod
+++ b/doc/crypto/lhash.pod
@@ -47,7 +47,7 @@ per-variable casts before calling the type-specific callbacks written
by the application author. These macros are defined as;
#define DECLARE_LHASH_HASH_FN(f_name,o_type) \
- unsigned long f_name##_LHASH_HASH(void *)
+ unsigned long f_name##_LHASH_HASH(void *);
#define IMPLEMENT_LHASH_HASH_FN(f_name,o_type) \
unsigned long f_name##_LHASH_HASH(void *arg) { \
o_type a = (o_type)arg; \
@@ -55,7 +55,7 @@ by the application author. These macros are defined as;
#define LHASH_HASH_FN(f_name) f_name##_LHASH_HASH
#define DECLARE_LHASH_COMP_FN(f_name,o_type) \
- int f_name##_LHASH_COMP(void *, void *)
+ int f_name##_LHASH_COMP(void *, void *);
#define IMPLEMENT_LHASH_COMP_FN(f_name,o_type) \
int f_name##_LHASH_COMP(void *arg1, void *arg2) { \
o_type a = (o_type)arg1; \