about summary refs log tree commit diff
path: root/src/rt/rust_kernel.cpp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-03-31 23:12:06 -0700
committerBrian Anderson <banderson@mozilla.com>2012-03-31 23:12:06 -0700
commit21064637ed8b8259d1305f21ace12c40b9561706 (patch)
treec402d24572a9b4610930106d90358c1aeba2625a /src/rt/rust_kernel.cpp
parentcf0c4cd7d2918205c13df38c4a62f93e1c72c1ac (diff)
downloadrust-21064637ed8b8259d1305f21ace12c40b9561706.tar.gz
rust-21064637ed8b8259d1305f21ace12c40b9561706.zip
rt: Fix whitespace
Diffstat (limited to 'src/rt/rust_kernel.cpp')
-rw-r--r--src/rt/rust_kernel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_kernel.cpp b/src/rt/rust_kernel.cpp
index e74819ab318..896a4de660b 100644
--- a/src/rt/rust_kernel.cpp
+++ b/src/rt/rust_kernel.cpp
@@ -67,7 +67,8 @@ rust_kernel::create_scheduler(size_t num_threads) {
         sched = new (this, "rust_scheduler")
             rust_scheduler(this, srv, num_threads, id);
         bool is_new = sched_table
-            .insert(std::pair<rust_sched_id, rust_scheduler*>(id, sched)).second;
+            .insert(std::pair<rust_sched_id,
+                              rust_scheduler*>(id, sched)).second;
         A(this, is_new, "Reusing a sched id?");
     }
     sched->start_task_threads();