about summary refs log tree commit diff
path: root/mach/setup-thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'mach/setup-thread.c')
-rw-r--r--mach/setup-thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mach/setup-thread.c b/mach/setup-thread.c
index 6716813825..79ec4320b3 100644
--- a/mach/setup-thread.c
+++ b/mach/setup-thread.c
@@ -52,7 +52,7 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
   if (error)
     return error;
 
-  tcb = _dl_allocate_tls(NULL);
+  tcb = _dl_allocate_tls (NULL);
   if (tcb == NULL)
     return KERN_RESOURCE_SHORTAGE;
 
@@ -87,7 +87,7 @@ __mach_setup_thread (task_t task, thread_t thread, void *pc,
     return error;
   assert (tssize == MACHINE_THREAD_STATE_COUNT);
 
-  _hurd_tls_new(thread, &ts, tcb);
+  _hurd_tls_new (thread, &ts, tcb);
 
   error = __thread_set_state (thread, MACHINE_THREAD_STATE_FLAVOR,
 			      (natural_t *) &ts, tssize);