Merge pull request #10172 from kivaisan/fix_plmn_iar_trace

Cellular: Fix plmn trace for IAR
pull/10182/head
Martin Kojtal 2019-03-21 10:05:20 +01:00 committed by GitHub
commit 014a5ec487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ nsapi_error_t AT_CellularContext::set_blocking(bool blocking)
void AT_CellularContext::set_plmn(const char *plmn)
{
tr_info("CellularContext plmn %s", plmn);
tr_info("CellularContext plmn %s", (plmn ? plmn : "NULL"));
_device->set_plmn(plmn);
}