diff options
author | Vadim Yanitskiy <vyanitskiy@sysmocom.de> | 2020-09-15 20:57:19 +0700 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2020-09-15 20:42:17 +0000 |
commit | 5715237911a9708fec3164a427b3db39f218ad19 (patch) | |
tree | 2d38deaeac05121213491b059a72c5056a9065c6 | |
parent | 380831e678d0cf6721bcc8389cc760a0370f7b5a (diff) |
abis_nm: fix erroneous use of LOGPC() instead of LOGP()
Change-Id: I8b6f791e423d1f7fcdabcaaaab48fc9586c1dc7b
-rw-r--r-- | src/osmo-bsc/abis_nm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c index d88ce248a..8d9849ec3 100644 --- a/src/osmo-bsc/abis_nm.c +++ b/src/osmo-bsc/abis_nm.c @@ -1604,7 +1604,7 @@ int abis_nm_software_load(struct gsm_bts *bts, int trx_nr, const char *fname, break; case GSM_BTS_TYPE_UNKNOWN: default: - LOGPC(DNM, LOGL_ERROR, "Software Load not properly implemented.\n"); + LOGP(DNM, LOGL_ERROR, "Software Load not properly implemented.\n"); return -1; break; } @@ -1769,8 +1769,8 @@ int abis_nm_get_attr(struct gsm_bts *bts, uint8_t obj_class, uint8_t bts_nr, uin struct msgb *msg; if (bts->type != GSM_BTS_TYPE_OSMOBTS && bts->type != GSM_BTS_TYPE_NANOBTS) { - LOGPC(DNM, LOGL_NOTICE, "Getting attributes from BTS%d type %s is not supported.\n", - bts->nr, btstype2str(bts->type)); + LOGP(DNM, LOGL_NOTICE, "Getting attributes from BTS%d type %s is not supported.\n", + bts->nr, btstype2str(bts->type)); return -EINVAL; } |