diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-18 00:06:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-18 00:06:19 +0100 |
commit | 6dbe9dcae593cb5c1562fee34703938583618fd4 (patch) | |
tree | 12a8b2df0a98dc0b50c55d9a0e5e697b61119b6e /mach | |
parent | c2fb08c78ac4716266c4dd7c9b4aa3c33b033d13 (diff) | |
download | glibc-6dbe9dcae593cb5c1562fee34703938583618fd4.zip glibc-6dbe9dcae593cb5c1562fee34703938583618fd4.tar.gz glibc-6dbe9dcae593cb5c1562fee34703938583618fd4.tar.bz2 |
hurd: Fix coding style
Diffstat (limited to 'mach')
-rw-r--r-- | mach/setup-thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mach/setup-thread.c b/mach/setup-thread.c index 6716813..79ec432 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); |