diff options
Diffstat (limited to 'modules/benchmark/cryptohash.c')
-rw-r--r-- | modules/benchmark/cryptohash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/benchmark/cryptohash.c b/modules/benchmark/cryptohash.c index add7ca03..32fcfd57 100644 --- a/modules/benchmark/cryptohash.c +++ b/modules/benchmark/cryptohash.c @@ -29,7 +29,7 @@ /* 5000*65536/(1024*1024) = 312.5 -- old version used 312.0 so results * don't exactly compare. */ -void inline md5_step(char *data, glong srclen) +inline void md5_step(char *data, glong srclen) { struct MD5Context ctx; guchar checksum[16]; @@ -39,7 +39,7 @@ void inline md5_step(char *data, glong srclen) MD5Final(checksum, &ctx); } -void inline sha1_step(char *data, glong srclen) +inline void sha1_step(char *data, glong srclen) { SHA1_CTX ctx; guchar checksum[20]; |