|
From: <lin...@us...> - 2003-10-09 18:24:46
|
Update of /cvsroot/dvbtools/dvbtune
In directory sc8-pr-cvs1:/tmp/cvs-serv12084
Modified Files:
tune.c
Log Message:
Minor compiler warning clean-ups
Index: tune.c
===================================================================
RCS file: /cvsroot/dvbtools/dvbtune/tune.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** tune.c 9 Oct 2003 18:22:19 -0000 1.17
--- tune.c 9 Oct 2003 18:24:42 -0000 1.18
***************
*** 213,217 ****
int check_status(int fd_frontend,struct dvb_frontend_parameters* feparams,int tone) {
- int i,res;
int32_t strength;
fe_status_t festatus;
--- 213,216 ----
***************
*** 235,239 ****
if (pfd[0].revents & POLLIN){
fprintf(stderr,"Getting frontend event\n");
! if (status = ioctl(fd_frontend, FE_GET_EVENT, &event) < 0){
if (status != -EOVERFLOW) {
perror("FE_GET_EVENT");
--- 234,238 ----
if (pfd[0].revents & POLLIN){
fprintf(stderr,"Getting frontend event\n");
! if ((status = ioctl(fd_frontend, FE_GET_EVENT, &event)) < 0){
if (status != -EOVERFLOW) {
perror("FE_GET_EVENT");
|