Kaydet (Commit) 766ec29c authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#1078847 we're writing a byte, so use a byte

Change-Id: I45fbcaae87b8ecff5fc25eca646e19849beda293
üst 731174ae
...@@ -3836,7 +3836,7 @@ void SelectionManager::shutdown() throw() ...@@ -3836,7 +3836,7 @@ void SelectionManager::shutdown() throw()
Application::Reschedule(); Application::Reschedule();
} }
// trigger poll()'s wait end by writing a dummy value // trigger poll()'s wait end by writing a dummy value
int dummy=0; char dummy=0;
dummy = write(m_EndThreadPipe[1], &dummy, 1); dummy = write(m_EndThreadPipe[1], &dummy, 1);
} }
osl_joinWithThread( m_aThread ); osl_joinWithThread( m_aThread );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment