From 2e0be4e18b5aec576d429c75ddee736fd0831229 Mon Sep 17 00:00:00 2001 From: ntfreak Date: Thu, 11 Jun 2009 19:32:10 +0000 Subject: [PATCH] - fix bug introduced during r1962 - Original patch submitted by David Claffey [dnclaffey@gmail.com]. git-svn-id: svn://svn.berlios.de/openocd/trunk@2202 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/target/mips32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/mips32.c b/src/target/mips32.c index 9eb7b0c9a2..a06ed0beda 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -346,7 +346,7 @@ int mips32_examine(struct target_s *target) { mips32_common_t *mips32 = target->arch_info; - if (target_was_examined(target)) + if (!target_was_examined(target)) { target_set_examined(target); -- 2.30.2