diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-14 17:35:36 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-11-14 17:35:36 +0000 |
commit | a7e559bdf163c24ad62c279a9bef6055773d5536 (patch) | |
tree | 6cf82529461201a2972ebce320a404ad288259c0 /examples/Threads | |
parent | 632731cd6111dfe3f65ce02a1c0c9bff264c59e7 (diff) | |
download | ATCD-a7e559bdf163c24ad62c279a9bef6055773d5536.tar.gz |
ChangeLogTag:Tue Nov 14 09:19:16 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'examples/Threads')
-rw-r--r-- | examples/Threads/thread_specific.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Threads/thread_specific.cpp b/examples/Threads/thread_specific.cpp index c2eaf85b1b6..eb95824cdda 100644 --- a/examples/Threads/thread_specific.cpp +++ b/examples/Threads/thread_specific.cpp @@ -120,8 +120,8 @@ worker (void *c) // Use the guard to serialize access to printf... ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, printf_lock, 0); - ACE_OS::printf ("(%lu) errno = %d, lineno = %d, flags = %d\n", - ACE_reinterpret_cast(unsigned long,handle), + ACE_OS::printf ("(%u) errno = %d, lineno = %d, flags = %d\n", + handle, tss_error->error (), tss_error->line (), tss_error->flags ()); |