aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-01-15 23:19:04 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2018-01-15 23:28:00 +0100
commit70d3ece487ac0e18a66fd6e03e75bc9c35bbcb5f (patch)
treec7f3ef0eb9938c807c933ddfb5d0d81a3c335642
parente9b4c390b49aa93150a45883d97ccfc774b8e1fa (diff)
hnbgw_rua.c: log: fix integer format for cN_DomainIndicator
Fixes: CID#135219 Change-Id: I32c11100c87a59f34d7c1fefd2f0037e5d63f0e0
-rw-r--r--src/hnbgw_rua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hnbgw_rua.c b/src/hnbgw_rua.c
index b2b8792..e918c47 100644
--- a/src/hnbgw_rua.c
+++ b/src/hnbgw_rua.c
@@ -198,7 +198,7 @@ static int rua_to_scu(struct hnb_context *hnb,
is_ps = true;
break;
default:
- LOGP(DRUA, LOGL_ERROR, "Unsupported Domain %u\n",
+ LOGP(DRUA, LOGL_ERROR, "Unsupported Domain %ld\n",
cN_DomainIndicator);
return -1;
}