diff options
Diffstat (limited to 'libstdc++-v3/src/condition_variable.cc')
-rw-r--r-- | libstdc++-v3/src/condition_variable.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/src/condition_variable.cc b/libstdc++-v3/src/condition_variable.cc index fdcb6a0..d3f29f6 100644 --- a/libstdc++-v3/src/condition_variable.cc +++ b/libstdc++-v3/src/condition_variable.cc @@ -1,6 +1,6 @@ // condition_variable -*- C++ -*- -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -34,7 +34,7 @@ namespace std __native_type __tmp = __GTHREAD_COND_INIT; _M_cond = __tmp; #else - int __e = __gthread_cond_init(&_M_cond, NULL); + int __e = __gthread_cond_init(&_M_cond, 0); if (__e) __throw_system_error(__e); |