From: Øyvind H. <go...@us...> - 2010-03-22 07:22:27
|
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 ccfaed8bc7936d7a1640bf69df52ac65ca38e298 (commit) from c2f714bd4482cfe3c09efdc57e8b6b7e8536e181 (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 ccfaed8bc7936d7a1640bf69df52ac65ca38e298 Author: Ãyvind Harboe <oyv...@zy...> Date: Mon Mar 22 07:21:09 2010 +0100 bitq: fix warning now that out_value is const This was an easy one. Just add the missing "const" to a local variable definition. Signed-off-by: Ãyvind Harboe <oyv...@zy...> diff --git a/src/jtag/drivers/bitq.c b/src/jtag/drivers/bitq.c index bffc475..79ca349 100644 --- a/src/jtag/drivers/bitq.c +++ b/src/jtag/drivers/bitq.c @@ -226,7 +226,7 @@ void bitq_scan_field(struct scan_field* field, int pause) int bit_cnt; int tdo_req; - uint8_t* out_ptr; + const uint8_t* out_ptr; uint8_t out_mask; if (field->in_value) ----------------------------------------------------------------------- Summary of changes: src/jtag/drivers/bitq.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |