From: zwelch Date: Sun, 7 Jun 2009 23:20:30 +0000 (+0000) Subject: Fix regression in mdw output; identified by Magnus Lundin. X-Git-Tag: v0.2.0~414 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=733dfb288fadefee93e61bb61a39171d210a93aa;p=openocd Fix regression in mdw output; identified by Magnus Lundin. git-svn-id: svn://svn.berlios.de/openocd/trunk@2098 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/target/target.c b/src/target/target.c index b39ce81b..d6726492 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -1943,9 +1943,9 @@ static void handle_md_output(struct command_context_s *cmd_ctx, const char *value_fmt; switch (size) { - case 4: value_fmt = "%8.8x"; break; - case 2: value_fmt = "%4.2x"; break; - case 1: value_fmt = "%2.2x"; break; + case 4: value_fmt = "%8.8x "; break; + case 2: value_fmt = "%4.2x "; break; + case 1: value_fmt = "%2.2x "; break; default: LOG_ERROR("invalid memory read size: %u", size); exit(-1);