kopia lustrzana https://github.com/Hamlib/Hamlib
Fix compile warning in iofunc.c
rodzic
bf8bce2d5a
commit
13e50f1a03
|
@ -752,8 +752,11 @@ static int port_wait_for_data(hamlib_port_t *p, int direct)
|
||||||
{
|
{
|
||||||
return port_wait_for_data_direct(p);
|
return port_wait_for_data_direct(p);
|
||||||
}
|
}
|
||||||
|
#ifdef ASYNC_BUG
|
||||||
return port_wait_for_data_sync_pipe(p);
|
return port_wait_for_data_sync_pipe(p);
|
||||||
|
#else
|
||||||
|
RETURNFUNC(-RIG_EINTERNAL);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ASYNC_BUG
|
#ifdef ASYNC_BUG
|
||||||
|
|
Ładowanie…
Reference in New Issue