ols: Fix a compiler warning (unused variable).
CC src/hardware/openbench-logic-sniffer/api.lo ../src/hardware/openbench-logic-sniffer/api.c: In function 'scan': ../src/hardware/openbench-logic-sniffer/api.c:103:10: warning: unused variable 'probefd' [-Wunused-variable] GPollFD probefd; ^
This commit is contained in:
parent
ed936ccc7c
commit
f7ab2f231a
|
@ -100,7 +100,6 @@ static GSList *scan(GSList *options)
|
||||||
struct dev_context *devc;
|
struct dev_context *devc;
|
||||||
struct sr_channel *ch;
|
struct sr_channel *ch;
|
||||||
struct sr_serial_dev_inst *serial;
|
struct sr_serial_dev_inst *serial;
|
||||||
GPollFD probefd;
|
|
||||||
GSList *l, *devices;
|
GSList *l, *devices;
|
||||||
int ret, i;
|
int ret, i;
|
||||||
const char *conn, *serialcomm;
|
const char *conn, *serialcomm;
|
||||||
|
|
Loading…
Reference in New Issue