From: Øyvind H. <go...@us...> - 2010-03-17 21:35:39
|
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 0529431fe740fbf04b41129d84e2d8633b13fabe (commit) from cc197c808625d9afa5e4c316122d59b71fe8ee44 (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 0529431fe740fbf04b41129d84e2d8633b13fabe Author: Ãyvind Harboe <oyv...@zy...> Date: Wed Mar 17 21:34:43 2010 +0100 mips: fix warning Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/target/mips_ejtag.c b/src/target/mips_ejtag.c index cea8fa8..42dc6e0 100644 --- a/src/target/mips_ejtag.c +++ b/src/target/mips_ejtag.c @@ -135,7 +135,7 @@ int mips_ejtag_drscan_8(struct mips_ejtag *ejtag_info, uint32_t *data) if (tap == NULL) return ERROR_FAIL; struct scan_field field; - uint8_t t[4], r[4]; + uint8_t t[4] = {0, 0, 0, 0}, r[4]; int retval; field.num_bits = 8; ----------------------------------------------------------------------- Summary of changes: src/target/mips_ejtag.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |