From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Odd use of %14pM in net/batman-adv/distributed-arp-table.c Date: Tue, 13 Jun 2017 14:51:41 -0700 Message-ID: <1497390701.18751.26.camel@perches.com> Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit Cc: netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, b.a.t.m.a.n-ZwoEplunGu2X36UT3dwllkB+6BGkLq7r@public.gmane.org, "David S. Miller" , linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Marek Lindner , Simon Wunderlich , Antonio Quartulli Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: b.a.t.m.a.n-bounces-ZwoEplunGu2X36UT3dwllkB+6BGkLq7r@public.gmane.org Sender: "B.A.T.M.A.N" List-Id: netdev.vger.kernel.org An output mac address is 17 bytes 1 12345678901234567 00:11:22:33:44:55 but in net/batman-adv/distributed-arp-table.c int batadv_dat_cache_seq_print_text(struct seq_file *seq, void *offset) { [...] seq_printf(seq, " * %15pI4 %14pM %4i %6i:%02i\n",    &dat_entry->ip, dat_entry->mac_addr,    batadv_print_vid(dat_entry->vid),    last_seen_mins, last_seen_secs); %14pM is odd as this should not emit the last byte of the mac address. So given the example above, it would output 00:11:22:33:44 Is that what's really desired? If so, I'd suggest using something more obvious like %5phC