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 d2a2c14d202da736e2c820c26d6deceee4e1e530 (commit)
from 3f30563c88fcf02a8a8e671d817299adfda628ec (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 d2a2c14d202da736e2c820c26d6deceee4e1e530
Author: David Brownell <dbr...@us...>
Date: Sat Feb 20 11:11:43 2010 -0800
FreeBSD buildfix
Fix an unused variable warning seen when building the parport driver
under FreeBSD.
Using information from Xiaofan Chen <xia...@gm...>
Signed-off-by: David Brownell <dbr...@us...>
diff --git a/src/jtag/drivers/parport.c b/src/jtag/drivers/parport.c
index a38ccfd..fa3373b 100644
--- a/src/jtag/drivers/parport.c
+++ b/src/jtag/drivers/parport.c
@@ -265,7 +265,6 @@ static int parport_init(void)
struct cable *cur_cable;
#if PARPORT_USE_PPDEV == 1
char buffer[256];
- int i = 0;
#endif
cur_cable = cables;
@@ -323,7 +322,8 @@ static int parport_init(void)
LOG_DEBUG("...open");
#if !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
- i = ioctl(device_handle, PPCLAIM);
+ int i = ioctl(device_handle, PPCLAIM);
+
if (i < 0)
{
LOG_ERROR("cannot claim device");
-----------------------------------------------------------------------
Summary of changes:
src/jtag/drivers/parport.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Main OpenOCD repository
|