summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm_thread_mutex1.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm_thread_mutex1.rb')
-rw-r--r--benchmark/bm_vm_thread_mutex1.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm_thread_mutex1.rb b/benchmark/bm_vm_thread_mutex1.rb
index 9ccc7c7287..5c9f85dfb7 100644
--- a/benchmark/bm_vm_thread_mutex1.rb
+++ b/benchmark/bm_vm_thread_mutex1.rb
@@ -9,7 +9,7 @@ lmax = max * max
Thread.new{
i = 0
while i<lmax
- i+=1
+ i += 1
m.synchronize{
r += 1
}