Index: base/threading/platform_thread_posix.cc |
diff --git a/base/threading/platform_thread_posix.cc b/base/threading/platform_thread_posix.cc |
index 61d75861d3f2e89f7a2b58b76a4a9a8a755b5f5a..0adb92dbce50da89aa424154e3af9f3ce5b36a8d 100644 |
--- a/base/threading/platform_thread_posix.cc |
+++ b/base/threading/platform_thread_posix.cc |
@@ -100,8 +100,7 @@ bool CreateThread(size_t stack_size, |
params->priority = priority; |
pthread_t handle; |
- int err = |
- pthread_create(&handle, &attributes, ThreadFunc, params.get()); |
+ int err = pthread_create(&handle, &attributes, ThreadFunc, params.get()); |
bool success = !err; |
if (success) { |
// ThreadParams should be deleted on the created thread after used. |