summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-30 03:47:39 +0000
committerharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-30 03:47:39 +0000
commit05e49f31d2cdb632de0eb56c6b7689696c3468a8 (patch)
treed26d337aa343a52f6c2c73714b0c7d74a31daad9 /ace
parent2a0e09689337c50a10c2a3037b5a0fc09059052b (diff)
downloadATCD-05e49f31d2cdb632de0eb56c6b7689696c3468a8.tar.gz
Fixed a tiny little bug.
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp
index cc0010407e5..25f3b43cdc0 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -518,7 +518,7 @@ ACE_OS::set_sched_params (const ACE_Scheduling_Params &scheduling_params)
// Set the thread priority on the current thread.
ACE_hthread_t my_thread_id;
- ACE_OS::thr_self (&my_thread_id);
+ ACE_OS::thr_self (my_thread_id);
if (! ACE_OS::thr_setprio (my_thread_id,
scheduling_params.priority ().os_default_thread_priority ()))
{