Skip to content

Commit 20776db

Browse files
committed
fixed the comparison
1 parent 44c2e02 commit 20776db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/net/cellular/UbloxUSBModem/UbloxModem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ UbloxModem::UbloxModem(IOStream* atStream, IOStream* pppStream) :
4040
m_ussdInit(false), // USSDInterface starts un-initialised
4141
m_linkMonitorInit(false), // LinkMonitor subsystem starts un-initialised
4242
m_atOpen(false), // ATCommandsInterface starts in a closed state
43-
m_onePort(pppStream != NULL),
43+
m_onePort(pppStream == NULL),
4444
m_gsm(true)
4545
{
4646
}

0 commit comments

Comments
 (0)