From: Øyvind H. <go...@us...> - 2010-05-18 12:32:58
|
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 e804a34a632345effd706872605a0cc382a4da70 (commit) from e92b203a768731fdbc1499c59b0a60e1a2b290a7 (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 e804a34a632345effd706872605a0cc382a4da70 Author: Ãyvind Harboe <oyv...@zy...> Date: Tue May 18 12:10:24 2010 +0200 zy1000: fix false positive warning about unitialized local variable Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/jtag/zy1000/zy1000.c b/src/jtag/zy1000/zy1000.c index b3f94e5..442a09f 100644 --- a/src/jtag/zy1000/zy1000.c +++ b/src/jtag/zy1000/zy1000.c @@ -181,7 +181,7 @@ void zy1000_reset(int trst, int srst) (!srst && !trst && (jtag_get_reset_config() & RESET_TRST_PULLS_SRST))) { bool first = true; - long long start; + long long start = 0; long total = 0; for (;;) { ----------------------------------------------------------------------- Summary of changes: src/jtag/zy1000/zy1000.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |