From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sergei Shtylyov Subject: Re: [PATCH] bridge: Fix format string for %ul Date: Sat, 27 Aug 2016 18:13:03 +0300 Message-ID: <11e50e3c-2e1f-4614-07e3-3bd144af4f94@cogentembedded.com> References: <1472267428-810527-1-git-send-email-green@linuxhacker.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, bridge@lists.linux-foundation.org, linux-kernel@vger.kernel.org To: Oleg Drokin , Stephen Hemminger , "David S. Miller" Return-path: In-Reply-To: <1472267428-810527-1-git-send-email-green@linuxhacker.ru> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: bridge-bounces@lists.linux-foundation.org Errors-To: bridge-bounces@lists.linux-foundation.org List-Id: netdev.vger.kernel.org Hello. On 8/27/2016 6:10 AM, Oleg Drokin wrote: > %ul would print an unsigned value and a letter l, > likely it was %lu that was meant to print the long int, > but in reality the values printed there are just regular signed Signed? Then you need probably "%d" or "%i"... > ints, so just dropping the l altogether. > > Signed-off-by: Oleg Drokin [...] MBR, Sergei