aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2011-01-18 13:31:32 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-02-23 18:05:10 -0500
commitc8a61b52ebac3645b4e3c5b03c2073e6c8c119a8 (patch)
tree7d9932ec55c9abceb65c5c723de3429f11722a3b /net/tipc
parenttipc: Improve handling of invalid link tolerance values (diff)
downloadlinux-dev-c8a61b52ebac3645b4e3c5b03c2073e6c8c119a8.tar.xz
linux-dev-c8a61b52ebac3645b4e3c5b03c2073e6c8c119a8.zip
tipc: Fix print statements that assume pointers are 32-bit values
Corrects print statements that use %x to print pointer values to use %p instead, so that 64-bit pointer values are displayed correctly. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/link.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c
index 3c1c28cdbaa4..d586265e54a4 100644
--- a/net/tipc/link.c
+++ b/net/tipc/link.c
@@ -2983,9 +2983,9 @@ static void link_print(struct link *l_ptr, const char *str)
!= (l_ptr->out_queue_size - 1)) ||
(l_ptr->last_out->next != NULL)) {
tipc_printf(buf, "\nSend queue inconsistency\n");
- tipc_printf(buf, "first_out= %x ", l_ptr->first_out);
- tipc_printf(buf, "next_out= %x ", l_ptr->next_out);
- tipc_printf(buf, "last_out= %x ", l_ptr->last_out);
+ tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
+ tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
+ tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
}
} else
tipc_printf(buf, "[]");