diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-04 22:33:35 +0100 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2017-12-04 22:53:10 +0100 |
commit | aa0b08980aba7bc82ab75151129b0c643cde7dfa (patch) | |
tree | efce2f4af2cc8233c9670d1abd404cc9bd36c111 /sal | |
parent | 4b45c95556d19cf51aab3658e533a2aeaa023d10 (diff) |
Condition for definition of LastIdent must match condition for its use
Change-Id: Iccc58d396d8c80a717e9d33ed8d872aadea08afa
Reviewed-on: https://gerrit.libreoffice.org/45829
Reviewed-by: Rene Engelhard <rene@debian.org>
Tested-by: Rene Engelhard <rene@debian.org>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/thread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/thread.cxx b/sal/osl/unx/thread.cxx index 639e8b6cec26..affbc5c3fb9c 100644 --- a/sal/osl/unx/thread.cxx +++ b/sal/osl/unx/thread.cxx @@ -567,7 +567,7 @@ static int HashSize = SAL_N_ELEMENTS(HashTable); static pthread_mutex_t HashLock = PTHREAD_MUTEX_INITIALIZER; -#if ! (defined LINUX || defined MACOSX || defined IOS) +#if ! ((defined LINUX && !defined __FreeBSD_kernel__) || defined MACOSX || defined IOS) static oslThreadIdentifier LastIdent = 0; #endif |