From: David B. <dbr...@us...> - 2010-04-04 10:30:44
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 2a17fd9f9b51516a830ba4b3ae2f2284929ff266 (commit) from 876bf9bf4cd5fc2640d91811fb69c0d36f9e2c18 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2a17fd9f9b51516a830ba4b3ae2f2284929ff266 Author: David Brownell <dbr...@us...> Date: Sun Apr 4 01:28:50 2010 -0700 Restore deleted '!' character I'm not sure what caused this significant character to get deleted. it may be related to intermittent Editor or terminal flakes I've been seeing lately (sigh). This fix is trivial. Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/target/target.c b/src/target/target.c index 286933f..f3d63fc 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -658,7 +658,7 @@ int target_run_algorithm(struct target *target, LOG_ERROR("Target not examined yet"); goto done; } - if (target->type->run_algorithm) { + if (!target->type->run_algorithm) { LOG_ERROR("Target type '%s' does not support %s", target_type_name(target), __func__); goto done; ----------------------------------------------------------------------- Summary of changes: src/target/target.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |