Update fifoconsole.cpp

actually store the pointer in the field
This commit is contained in:
eeeee 2014-12-21 17:21:19 -08:00
parent a44773e455
commit fabcfc1cbc

View file

@ -15,7 +15,7 @@ static volatile bool gs_stopFifoThread = false;
FifoConsole::FifoConsole(IConsole *pConsole, char *pFifoFile, int flag)
{
void *m_pFifoThread = thread_create(ListenFifoThread, this);
m_pFifoThread = thread_create(ListenFifoThread, this);
m_pConsole = pConsole;
m_pFifoFile = pFifoFile;
m_flag = flag;