summaryrefslogtreecommitdiff
path: root/ACE/examples/Threads/thread_specific.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Threads/thread_specific.h')
-rw-r--r--ACE/examples/Threads/thread_specific.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/Threads/thread_specific.h b/ACE/examples/Threads/thread_specific.h
index fbc18d450f7..f17c21a8751 100644
--- a/ACE/examples/Threads/thread_specific.h
+++ b/ACE/examples/Threads/thread_specific.h
@@ -21,7 +21,7 @@ public:
// Errno::flags_ is a static variable, so we've got to protect it
// with a mutex since it isn't kept in thread-specific storage.
- int flags (void)
+ int flags ()
{
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, Errno::lock_, -1);