Browse Source

FreeBSD buildfix

Fix an unused variable warning seen when building the parport driver
under FreeBSD.

Using information from Xiaofan Chen <xiaofanc@gmail.com>

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
tags/v0.4.0
David Brownell 14 years ago
parent
commit
d2a2c14d20
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/jtag/drivers/parport.c

+ 2
- 2
src/jtag/drivers/parport.c View File

@@ -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");


Loading…
Cancel
Save