Browse Source

oops, don't use vista-only function

David Rose 17 years ago
parent
commit
6718f4c9df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pipeline/threadWin32Impl.cxx

+ 1 - 1
panda/src/pipeline/threadWin32Impl.cxx

@@ -142,7 +142,7 @@ join() {
 string ThreadWin32Impl::
 get_unique_id() const {
   ostringstream strm;
-  strm << GetCurrentProcessId() << "." << GetThreadId(_thread);
+  strm << GetCurrentProcessId() << "." << _thread_id;
 
   return strm.str();
 }