From 3c2ec528f61ddb475c0b205cad54ca3cfa7eb090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 7 Jan 2003 00:20:52 +0000 Subject: [PATCH] The return value is now also a variable of type (void **). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2373 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/support/TLS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/support/TLS.h b/headers/os/support/TLS.h index 855897fedd..e62781e8ee 100644 --- a/headers/os/support/TLS.h +++ b/headers/os/support/TLS.h @@ -34,7 +34,7 @@ tls_get(int32 index) static inline void ** tls_address(int32 index) { - void *ret; + void **ret; __asm__ __volatile__ ( "movl %%fs:0, %%eax \n\t" "leal (%%eax, %%edx, 4), %%eax \n\t"