From mboxrd@z Thu Jan 1 00:00:00 1970 From: aq Subject: [PATCH] warning on printf format Date: Mon, 15 Aug 2005 02:35:33 +0900 Message-ID: <9cde8bff05081410356cdf533@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "List: Xen Developers" List-Id: xen-devel@lists.xenproject.org This patch fixes a warning message on printf format. Signed-off-by: Nguyen Anh Quynh diff -r 3fe7b0b7f6c5 xen/arch/x86/mm.c --- a/xen/arch/x86/mm.c Sun Aug 14 09:17:54 2005 +++ b/xen/arch/x86/mm.c Mon Aug 15 02:33:21 2005 @@ -3054,7 +3054,7 @@ */ BUG(); } - PTWR_PRINTK("[%c] disconnected_l1va at %p is %lx\n", + PTWR_PRINTK("[%c] disconnected_l1va at %p is %x\n", PTWR_PRINT_WHICH, ptep, pte.l1); l1e_remove_flags(pte, _PAGE_RW); =20 @@ -3072,7 +3072,7 @@ /* Ensure that there are no stale writable mappings in any TLB. */ /* NB. INVLPG is a serialising instruction: flushes pending updates. *= / flush_tlb_one_mask(d->cpumask, l1va); - PTWR_PRINTK("[%c] disconnected_l1va at %p now %lx\n", + PTWR_PRINTK("[%c] disconnected_l1va at %p now %x\n", PTWR_PRINT_WHICH, ptep, pte.l1); =20 /*