aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests/bsc-nat/bsc_nat_test.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-15 18:48:44 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-15 20:24:09 +0800
commit72ba1624b3d9f6fe3cbb62c3146dda75314b14e0 (patch)
tree5e06213145e32cd4ae266a46d9220c829ffd5a7b /openbsc/tests/bsc-nat/bsc_nat_test.c
parentd7657ffc84931d6827cc3cbfdd7e7df0d1995ef8 (diff)
misc: Do not prepend 0x when using %p in printf.
Diffstat (limited to 'openbsc/tests/bsc-nat/bsc_nat_test.c')
-rw-r--r--openbsc/tests/bsc-nat/bsc_nat_test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/openbsc/tests/bsc-nat/bsc_nat_test.c b/openbsc/tests/bsc-nat/bsc_nat_test.c
index 966667e3c..196f187d8 100644
--- a/openbsc/tests/bsc-nat/bsc_nat_test.c
+++ b/openbsc/tests/bsc-nat/bsc_nat_test.c
@@ -190,7 +190,7 @@ static void copy_to_msg(struct msgb *msg, const u_int8_t *data, unsigned int len
#define VERIFY(con_found, con, msg, ver, str) \
if (con_found != con) { \
- fprintf(stderr, "Failed to find the con: 0x%p\n", con_found); \
+ fprintf(stderr, "Failed to find the con: %p\n", con_found); \
abort(); \
} \
if (memcmp(msg->data, ver, sizeof(ver)) != 0) { \
@@ -217,7 +217,7 @@ static void test_contrack()
parsed = bsc_nat_parse(msg);
con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
if (con_found != NULL) {
- fprintf(stderr, "Con should not exist 0x%p\n", con_found);
+ fprintf(stderr, "Con should not exist %p\n", con_found);
abort();
}
rc = create_sccp_src_ref(con, msg, parsed);
@@ -227,7 +227,7 @@ static void test_contrack()
}
con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
if (con_found != con) {
- fprintf(stderr, "Failed to find the con: 0x%p\n", con_found);
+ fprintf(stderr, "Failed to find the con: %p\n", con_found);
abort();
}
if (memcmp(msg->data, bsc_cr_patched, sizeof(bsc_cr_patched)) != 0) {
@@ -269,7 +269,7 @@ static void test_contrack()
parsed = bsc_nat_parse(msg);
con_found = patch_sccp_src_ref_to_msc(msg, parsed, nat);
if (con_found != con) {
- fprintf(stderr, "Failed to find the con: 0x%p\n", con_found);
+ fprintf(stderr, "Failed to find the con: %p\n", con_found);
abort();
}
if (memcmp(msg->data, bsc_rlc_patched, sizeof(bsc_rlc_patched)) != 0) {
@@ -281,7 +281,7 @@ static void test_contrack()
/* verify that it is gone */
if (con_found != NULL) {
- fprintf(stderr, "Con should be gone. 0x%p\n", con_found);
+ fprintf(stderr, "Con should be gone. %p\n", con_found);
abort();
}
talloc_free(parsed);