summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/ThreadLocalStorage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Sources/ThreadLocalStorage.cxx')
-rw-r--r--Kernel/Sources/ThreadLocalStorage.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Sources/ThreadLocalStorage.cxx b/Kernel/Sources/ThreadLocalStorage.cxx
index 4d6fec14..a48b942c 100644
--- a/Kernel/Sources/ThreadLocalStorage.cxx
+++ b/Kernel/Sources/ThreadLocalStorage.cxx
@@ -46,7 +46,8 @@ Boolean tls_check_tib(ThreadInformationBlock* tib)
*/
EXTERN_C Void tls_check_syscall_impl(NewOS::VoidPtr TIB) noexcept
{
- if (!TIB) return;
+ if (!TIB)
+ return;
ThreadInformationBlock* tib = (ThreadInformationBlock*)TIB;