fixed the comparison

pull/121/head
mazgch 2013-12-09 23:43:51 +01:00
parent 44c2e02e51
commit 20776dbaa5
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ UbloxModem::UbloxModem(IOStream* atStream, IOStream* pppStream) :
m_ussdInit(false), // USSDInterface starts un-initialised
m_linkMonitorInit(false), // LinkMonitor subsystem starts un-initialised
m_atOpen(false), // ATCommandsInterface starts in a closed state
m_onePort(pppStream != NULL),
m_onePort(pppStream == NULL),
m_gsm(true)
{
}