1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

minor reformatting

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@513 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
mental 2007-01-26 01:06:51 +00:00
parent e6a443b6c0
commit 80a3cb7291

View file

@ -2,7 +2,7 @@
* Optimized Ruby Mutex implementation, loosely based on thread.rb by
* Yukihiro Matsumoto <matz@ruby-lang.org>
*
* Copyright 2006 MenTaLguY <mental@rydia.net>
* Copyright 2006-2007 MenTaLguY <mental@rydia.net>
*
* This file is made available under the same terms as Ruby.
*/
@ -623,7 +623,6 @@ rb_condvar_wait(self, mutex_v)
} else {
Mutex *mutex;
Data_Get_Struct(mutex_v, Mutex, mutex);
wait_condvar(condvar, mutex);
}