summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnuradio-core/src/lib/omnithread/nt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/omnithread/nt.cc b/gnuradio-core/src/lib/omnithread/nt.cc
index 03398aaa79..3853f01080 100644
--- a/gnuradio-core/src/lib/omnithread/nt.cc
+++ b/gnuradio-core/src/lib/omnithread/nt.cc
@@ -387,7 +387,7 @@ void
omni_semaphore::post(void)
{
if (!ReleaseSemaphore(nt_sem, 1, NULL)
- && GetLastError() != ERROR_TOO_MANY_POSTS ) // MinGW fix by Don Ward
+ && GetLastError() != ERROR_TOO_MANY_POSTS ) // MinGW fix--see ticket:95 in trac
throw omni_thread_fatal(GetLastError());
}