aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
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)
2983 != (l_ptr->out_queue_size - 1)) || 2983 != (l_ptr->out_queue_size - 1)) ||
2984 (l_ptr->last_out->next != NULL)) { 2984 (l_ptr->last_out->next != NULL)) {
2985 tipc_printf(buf, "\nSend queue inconsistency\n"); 2985 tipc_printf(buf, "\nSend queue inconsistency\n");
2986 tipc_printf(buf, "first_out= %x ", l_ptr->first_out); 2986 tipc_printf(buf, "first_out= %p ", l_ptr->first_out);
2987 tipc_printf(buf, "next_out= %x ", l_ptr->next_out); 2987 tipc_printf(buf, "next_out= %p ", l_ptr->next_out);
2988 tipc_printf(buf, "last_out= %x ", l_ptr->last_out); 2988 tipc_printf(buf, "last_out= %p ", l_ptr->last_out);
2989 } 2989 }
2990 } else 2990 } else
2991 tipc_printf(buf, "[]"); 2991 tipc_printf(buf, "[]");