aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-03-14 13:51:30 +0000
committerWerner Koch <[email protected]>2001-03-14 13:51:30 +0000
commit10b3a86f83cfcfdeb492cf94b7464071932108fc (patch)
treeb65d80ab56700beff018aa0c2aa65f003da27849
parentAdd a few key flags - needs the lates CVS gpg (diff)
downloadgpgme-10b3a86f83cfcfdeb492cf94b7464071932108fc.tar.gz
gpgme-10b3a86f83cfcfdeb492cf94b7464071932108fc.zip
Fixed syntax error
Diffstat (limited to '')
-rw-r--r--gpgme/w32-io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgme/w32-io.c b/gpgme/w32-io.c
index 4e2c1c9f..bfa0ad67 100644
--- a/gpgme/w32-io.c
+++ b/gpgme/w32-io.c
@@ -269,11 +269,11 @@ create_reader (HANDLE fd)
static void
destroy_reader (struct reader_context_s *c)
{
- LOCK (c->mutex)
+ LOCK (c->mutex);
c->stop_me = 1;
if (c->have_space_ev)
SetEvent (c->have_space_ev);
- UNLOCK (c->mutex)
+ UNLOCK (c->mutex);
DEBUG1 ("waiting for thread %p termination ...", c->thread_hd );
WaitForSingleObject (c->stopped, INFINITE);
@@ -522,11 +522,11 @@ create_writer (HANDLE fd)
static void
destroy_writer (struct writer_context_s *c)
{
- LOCK (c->mutex)
+ LOCK (c->mutex);
c->stop_me = 1;
if (c->have_data)
SetEvent (c->have_data);
- UNLOCK (c->mutex)
+ UNLOCK (c->mutex);
DEBUG1 ("waiting for thread %p termination ...", c->thread_hd );
WaitForSingleObject (c->stopped, INFINITE);