diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-18 14:56:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-18 14:56:06 +0200 |
commit | 0f3b52bc2c289dd5684b6661bf335e9aa92d48db (patch) | |
tree | afa59cc5fd095b23e9520253f983bcc0c442f10f /sal | |
parent | e7b900855b785a73b5318e16d7f190422f97475e (diff) |
The '<= 0' check can go now
...after 0083b33650c2f584ceff6eeaf9ef6993bfe0ae9b "sal: -Werror,-Wsign-compare
(32-bit)" cast the check against SAL_MAX_UINT32 to unsigned, anyway. (And the
check for == 0 is already handled in the platform-generic part below.)
Change-Id: I0d0354cb9368bffef5d3aa835f865524d106a6f3
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 c2705c8c08cc..639e8b6cec26 100644 --- a/sal/osl/unx/thread.cxx +++ b/sal/osl/unx/thread.cxx @@ -625,7 +625,7 @@ static oslThreadIdentifier insertThreadId (pthread_t hThread) #if defined LINUX && ! defined __FreeBSD_kernel__ long lin_tid = syscall(SYS_gettid); - if (lin_tid <= 0 || SAL_MAX_UINT32 < static_cast<unsigned long>(lin_tid)) + if (SAL_MAX_UINT32 < static_cast<unsigned long>(lin_tid)) std::abort(); pEntry->Ident = static_cast<pid_t>(lin_tid); #elif defined MACOSX || defined IOS |