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.
diff --git a/openbsc/src/gprs/gprs_gmm.c b/openbsc/src/gprs/gprs_gmm.c
index 07fd1dc..04f75cf 100644
--- a/openbsc/src/gprs/gprs_gmm.c
+++ b/openbsc/src/gprs/gprs_gmm.c
@@ -1639,7 +1639,7 @@
 {
 	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)