From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 75E57B70ED for ; Fri, 23 Jul 2010 01:09:36 +1000 (EST) In-Reply-To: <4553.1279775749@neuling.org> References: <4553.1279775749@neuling.org> Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: From: Segher Boessenkool Subject: Re: [PATCH] powerpc: print cores passed to firmware in decimal Date: Thu, 22 Jul 2010 17:11:44 +0200 To: Michael Neuling Cc: linuxppc-dev@ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > + case 'i': > + ++q; > + v = va_arg(args, unsigned long); > + prom_print_dec(v); > + break; Unsigned long should be "%lu". Segher