diff options
author | Richard Levitte <levitte@openssl.org> | 2002-09-25 14:49:40 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-09-25 14:49:40 +0200 |
commit | b3823ac64b4e0582d6b5bc81804b809e86753d3a (patch) | |
tree | 2f58469f4f057c36cc7af3cf8f62437cc07c073a /crypto/engine/eng_init.c | |
parent | -elapsed is also useful when using gettimeofday (diff) | |
download | openssl-b3823ac64b4e0582d6b5bc81804b809e86753d3a.tar.xz openssl-b3823ac64b4e0582d6b5bc81804b809e86753d3a.zip |
Missing ;
Diffstat (limited to 'crypto/engine/eng_init.c')
-rw-r--r-- | crypto/engine/eng_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_init.c b/crypto/engine/eng_init.c index 98caa21e32..170c1791b3 100644 --- a/crypto/engine/eng_init.c +++ b/crypto/engine/eng_init.c @@ -93,7 +93,7 @@ int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers) * there's a chance that both threads will together take the count from * 2 to 0 without either calling finish(). */ e->funct_ref--; - engine_ref_debug(e, 1, -1) + engine_ref_debug(e, 1, -1); if((e->funct_ref == 0) && e->finish) { if(unlock_for_handlers) |