From 5c82587a1ea8c452f518ff70d08a4cdb60ddb051 Mon Sep 17 00:00:00 2001
From: duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Date: Sun, 21 Jun 2009 03:17:16 +0000
Subject: C99 printf() -Werror fixes

git-svn-id: svn://svn.berlios.de/openocd/trunk@2322 b42882b7-edfa-0310-969c-e2dbd0fdcd60
---
 src/target/mips32_pracc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'src')

diff --git a/src/target/mips32_pracc.c b/src/target/mips32_pracc.c
index 59a9fb02..61a0ae54 100644
--- a/src/target/mips32_pracc.c
+++ b/src/target/mips32_pracc.c
@@ -143,7 +143,7 @@ static int mips32_pracc_exec_read(mips32_pracc_context *ctx, uint32_t address)
 		 * to start of debug vector */
 		
 		data = 0;
-		LOG_ERROR("Error reading unexpected address %8.8x", address);
+		LOG_ERROR("Error reading unexpected address %8.8" PRIx32 "", address);
 		return ERROR_JTAG_DEVICE_ERROR;
 	}
 	
@@ -200,7 +200,7 @@ static int mips32_pracc_exec_write(mips32_pracc_context *ctx, uint32_t address)
 	}
 	else
 	{
-		LOG_ERROR("Error writing unexpected address %8.8x", address);
+		LOG_ERROR("Error writing unexpected address %8.8" PRIx32 "", address);
 		return ERROR_JTAG_DEVICE_ERROR;
 	}
 	
-- 
cgit v1.2.3