aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/bssap.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 08:41:17 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-30 08:41:17 +0200
commit18bbe2e8a012be195069fad7224121ab64953fec (patch)
treee983e1b94b9a2fe987459afc10c7a456b972fb0d /openbsc/src/bssap.c
parent1b17913cbc75fc8fd96b5ffae14ec462e2d7c010 (diff)
misc: Do not prepend 0x when using %p in printf.
Diffstat (limited to 'openbsc/src/bssap.c')
-rw-r--r--openbsc/src/bssap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/bssap.c b/openbsc/src/bssap.c
index abcb6ac85..fac6c1f57 100644
--- a/openbsc/src/bssap.c
+++ b/openbsc/src/bssap.c
@@ -449,7 +449,7 @@ static void continue_new_assignment(struct gsm_lchan *new_lchan)
return;
}
- LOGP(DMSC, LOGL_NOTICE, "Sending assignment on chan: 0x%p\n", new_lchan);
+ LOGP(DMSC, LOGL_NOTICE, "Sending assignment on chan: %p\n", new_lchan);
gsm48_send_rr_ass_cmd(new_lchan->msc_data->lchan, new_lchan, 0x3);
}