From 5715237911a9708fec3164a427b3db39f218ad19 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Tue, 15 Sep 2020 20:57:19 +0700 Subject: abis_nm: fix erroneous use of LOGPC() instead of LOGP() Change-Id: I8b6f791e423d1f7fcdabcaaaab48fc9586c1dc7b --- src/osmo-bsc/abis_nm.c | 6 +++--- 1 file 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; } -- cgit v1.2.3