aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gprs_gmm.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-05-29 15:11:55 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2015-05-29 15:11:55 +0200
commitb7ae0b34f94b93555370f4492076f7d57ed7031a (patch)
tree88d8d587aedbdf9696ae79845ca9aca2e8468b14 /openbsc/src/gprs/gprs_gmm.c
parenta5a6da46a0b22d5c7695774c6c7eb26856bc6488 (diff)
ggsn: The id is a uint32_t don't print it as signed
This was noticed as I started to use UINT32_MAX for dynamically created GGSNs.
Diffstat (limited to 'openbsc/src/gprs/gprs_gmm.c')
-rw-r--r--openbsc/src/gprs/gprs_gmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gprs_gmm.c b/openbsc/src/gprs/gprs_gmm.c
index 07fd1dcfd..04f75cfe4 100644
--- a/openbsc/src/gprs/gprs_gmm.c
+++ b/openbsc/src/gprs/gprs_gmm.c
@@ -1639,7 +1639,7 @@ static int activate_ggsn(struct sgsn_mm_ctx *mmctx,
{
struct sgsn_pdp_ctx *pdp;
- LOGMMCTXP(LOGL_DEBUG, mmctx, "Using GGSN %d\n", ggsn->id);
+ LOGMMCTXP(LOGL_DEBUG, mmctx, "Using GGSN %u\n", ggsn->id);
ggsn->gsn = sgsn->gsn;
pdp = sgsn_create_pdp_ctx(ggsn, mmctx, req_nsapi, tp);
if (!pdp)