diff options
author | David Tardon <dtardon@redhat.com> | 2012-04-16 16:18:01 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-04-16 20:23:03 +0200 |
commit | cc138ca9637ce6325b52ad7473e4568422602564 (patch) | |
tree | 4f992048cc86569b43554e7f7ddcd36702f04a64 /desktop | |
parent | df02932ed3fd6f15b2886e6e69ec04ee5b3ad72f (diff) |
WaE: unused variable 'hProcess'
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/win32/source/guistdio/guistdio.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/win32/source/guistdio/guistdio.inc b/desktop/win32/source/guistdio/guistdio.inc index 58b5bffcc448..48b3c88bf379 100644 --- a/desktop/win32/source/guistdio/guistdio.inc +++ b/desktop/win32/source/guistdio/guistdio.inc @@ -256,11 +256,13 @@ DWORD WINAPI InputThread( LPVOID pParam ) DWORD WINAPI WaitForUIThread( LPVOID pParam ) { +#ifndef UNOPKG HANDLE hProcess = (HANDLE)pParam; -#ifndef UNOPKG if ( !_tgetenv( TEXT("UNOPKG") ) ) WaitForInputIdle( hProcess, INFINITE ); +#else + (void) pParam; #endif return 0; |