Fixed syntax error
authorWerner Koch <wk@gnupg.org>
Wed, 14 Mar 2001 13:51:30 +0000 (13:51 +0000)
committerWerner Koch <wk@gnupg.org>
Wed, 14 Mar 2001 13:51:30 +0000 (13:51 +0000)
gpgme/w32-io.c

index 4e2c1c9f06cce7e365f85209b6a1cdf1ebb2e843..bfa0ad672ac9c722bd4467c73a50143ac88ac00b 100644 (file)
@@ -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);