changeset 91:d982501fe83d

Fixed problem with HMUTEX Unlock().
author Brian Smith <brian@dbsoft.org>
date Thu, 03 Oct 2013 14:49:37 -0500
parents b90ce8ec9c44
children 019deed896d1
files src/dw/dw.go
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dw/dw.go	Thu Sep 26 03:55:04 2013 -0500
+++ b/src/dw/dw.go	Thu Oct 03 14:49:37 2013 -0500
@@ -4714,7 +4714,7 @@
 
 // Reliquishes the access to the semaphore.
 func (handle HMTX) Unlock() {
-    Mutex_lock(handle);
+    Mutex_unlock(handle);
 }
 
 // Tries to gain access to the semaphore.