diff options
Diffstat (limited to 'development/acpica/pthread_build_warning_fix.patch')
-rw-r--r-- | development/acpica/pthread_build_warning_fix.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/development/acpica/pthread_build_warning_fix.patch b/development/acpica/pthread_build_warning_fix.patch deleted file mode 100644 index 675bc17e39..0000000000 --- a/development/acpica/pthread_build_warning_fix.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/source/os_specific/service_layers/osunixxf.c b/source/os_specific/service_layers/osunixxf.c -index 1698139..fbe02b7 100644 ---- a/source/os_specific/service_layers/osunixxf.c -+++ b/source/os_specific/service_layers/osunixxf.c -@@ -1243,8 +1243,10 @@ ACPI_THREAD_ID - AcpiOsGetThreadId ( - void) - { -+ pthread_t thread; - -- return (ACPI_CAST_PTHREAD_T (pthread_self())); -+ thread = pthread_self(); -+ return (ACPI_CAST_PTHREAD_T (thread)); - } - - |