aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
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
parent1b17913cbc75fc8fd96b5ffae14ec462e2d7c010 (diff)
misc: Do not prepend 0x when using %p in printf.
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/bssap.c2
-rw-r--r--openbsc/src/nat/bsc_sccp.c8
2 files changed, 5 insertions, 5 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);
}
diff --git a/openbsc/src/nat/bsc_sccp.c b/openbsc/src/nat/bsc_sccp.c
index eed80305c..fe85a5dd6 100644
--- a/openbsc/src/nat/bsc_sccp.c
+++ b/openbsc/src/nat/bsc_sccp.c
@@ -101,7 +101,7 @@ int create_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc
llist_add(&conn->list_entry, &bsc->nat->sccp_connections);
- LOGP(DNAT, LOGL_DEBUG, "Created 0x%x <-> 0x%x mapping for con 0x%p\n",
+ LOGP(DNAT, LOGL_DEBUG, "Created 0x%x <-> 0x%x mapping for con %p\n",
sccp_src_ref_to_int(&conn->real_ref),
sccp_src_ref_to_int(&conn->patched_ref), bsc);
@@ -126,13 +126,13 @@ int update_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc
continue;
conn->remote_ref = *parsed->src_local_ref;
- LOGP(DNAT, LOGL_DEBUG, "Updating 0x%x to remote 0x%x on 0x%p\n",
+ LOGP(DNAT, LOGL_DEBUG, "Updating 0x%x to remote 0x%x on %p\n",
sccp_src_ref_to_int(&conn->patched_ref),
sccp_src_ref_to_int(&conn->remote_ref), bsc);
return 0;
}
- LOGP(DNAT, LOGL_ERROR, "Referenced connection not found on BSC: 0x%p\n", bsc);
+ LOGP(DNAT, LOGL_ERROR, "Referenced connection not found on BSC: %p\n", bsc);
return -1;
}
@@ -148,7 +148,7 @@ void remove_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bs
if (bsc != conn->bsc)
continue;
- LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con 0x%p\n",
+ LOGP(DNAT, LOGL_DEBUG, "Destroy 0x%x <-> 0x%x mapping for con %p\n",
sccp_src_ref_to_int(&conn->real_ref),
sccp_src_ref_to_int(&conn->patched_ref), bsc);
llist_del(&conn->list_entry);