Reduce verbosity in iofunc.c

pull/649/head
Mike Black W9MDB 2021-03-29 13:01:26 -05:00
rodzic f55fcd9353
commit f6dc32778b
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -247,6 +247,7 @@ static ssize_t port_read(hamlib_port_t *p, void *buf, size_t count)
int i;
ssize_t ret;
//ENTERFUNC; // too verbose
/*
* Since WIN32 does its special serial read, we have
* to catch the microHam case to do just "read".
@ -273,7 +274,8 @@ static ssize_t port_read(hamlib_port_t *p, void *buf, size_t count)
}
}
RETURNFUNC(ret);
//RETURNFUNC(ret); // too verbose
return ret;
}
else if (p->type.rig == RIG_PORT_NETWORK
|| p->type.rig == RIG_PORT_UDP_NETWORK)