From d11c8e3c8e09e0c2c48a75e9e912f756e99a9f67 Mon Sep 17 00:00:00 2001
From: oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Date: Tue, 25 Aug 2009 07:14:05 +0000
Subject: [PATCH] Ferdinand Postema <ferdinand@postema.eu> fix warnings

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

diff --git a/src/target/target.c b/src/target/target.c
index 16e4fecdb..d21944860 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -1760,7 +1760,7 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char
 					value = buf_to_str(reg->value,
 							reg->size, 16);
 					command_print(cmd_ctx,
-							"(%i) %s (/%u): 0x%s%s",
+							"(%i) %s (/%" PRIu32 "): 0x%s%s",
 							count, reg->name,
 							reg->size, value,
 							reg->dirty
@@ -1768,7 +1768,7 @@ static int handle_reg_command(struct command_context_s *cmd_ctx, char *cmd, char
 								: "");
 					free(value);
 				} else {
-					command_print(cmd_ctx, "(%i) %s (/%u)",
+					command_print(cmd_ctx, "(%i) %s (/%" PRIu32 ")",
 							  count, reg->name,
 							  reg->size) ;
 				}
-- 
GitLab