Re: [PATCH v2 04/06] net: ax25: fix misuse of %x

2019-04-21 Thread David Miller
From: Fuqian Huang Date: Sun, 21 Apr 2019 19:48:06 +0800 > Pointers should be printed with %p or %px rather than > cast to long type and printed with %8.8lx. > Change %8.8lx to %p to print the pointer. > > Signed-off-by: Fuqian Huang Applied to net-next.

[PATCH v2 04/06] net: ax25: fix misuse of %x

2019-04-21 Thread Fuqian Huang
Pointers should be printed with %p or %px rather than cast to long type and printed with %8.8lx. Change %8.8lx to %p to print the pointer. Signed-off-by: Fuqian Huang --- net/ax25/af_ax25.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ax25/af_ax25.c b/net/ax25/af_a