summaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-18 00:06:19 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-03-18 00:06:19 +0100
commit6dbe9dcae593cb5c1562fee34703938583618fd4 (patch)
tree12a8b2df0a98dc0b50c55d9a0e5e697b61119b6e /mach
parentc2fb08c78ac4716266c4dd7c9b4aa3c33b033d13 (diff)
hurd: Fix coding style
Diffstat (limited to 'mach')
-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);