$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: anthony_at_[hidden]
Date: 2007-12-20 02:46:01
Author: anthonyw
Date: 2007-12-20 02:46:00 EST (Thu, 20 Dec 2007)
New Revision: 42194
URL: http://svn.boost.org/trac/boost/changeset/42194
Log:
added missing parentheses
Text files modified:
trunk/libs/thread/src/pthread/thread.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/thread/src/pthread/thread.cpp
==============================================================================
--- trunk/libs/thread/src/pthread/thread.cpp (original)
+++ trunk/libs/thread/src/pthread/thread.cpp 2007-12-20 02:46:00 EST (Thu, 20 Dec 2007)
@@ -414,7 +414,7 @@
#if defined(PTW32_VERSION) || defined(__hpux)
return pthread_num_processors_np();
#elif defined(__linux__)
- return get_nprocs;
+ return get_nprocs();
#else
return 0;
#endif