diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 11:08:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 11:08:38 +0200 |
commit | adbf7da7d1d9a1701c3fccbfbbf9d749d6478e6c (patch) | |
tree | 0d71021600402ff9f7b4e966ccede66754280ce8 /vcl/win | |
parent | ffb4d7b16b386ba13f27722cd78406d5b5c5baca (diff) |
Inconsistent declarations of ImplSalYieldMutexAcquireWithWait
...introduced with 3840aede596e6fc24f7ed7df9100fb028134aac6 "Unify SolarMutex
implementations" (causing link failure and clang-cl loplugin:unreffun with
64 bit Windows builds)
Change-Id: I273d15e74ad88648ebbccb33f1348497779cc488
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/app/salinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx index 2f4e0b669689..539a7d2c3eef 100644 --- a/vcl/win/app/salinst.cxx +++ b/vcl/win/app/salinst.cxx @@ -175,7 +175,7 @@ sal_uInt32 SalYieldMutex::doRelease( const bool bUnlockAll ) return nCount; } -void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount ) +void ImplSalYieldMutexAcquireWithWait( sal_uInt32 nCount ) { WinSalInstance* pInst = GetSalData()->mpFirstInstance; if ( pInst ) |