Ferdinand Postema <ferdinand@postema.eu> fix warnings
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 25 Aug 2009 07:14:05 +0000 (07:14 +0000)
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 25 Aug 2009 07:14:05 +0000 (07:14 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@2615 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/target/target.c

index 16e4fecdb9cc3e5a1c31c9761399a7a465af09a9..d21944860284e70921f06a9f16d313804fd7593e 100644 (file)
@@ -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) ;
                                }