Remove set but unused variable errors in tests.

Hamlib-1.2.15
Nate Bargmann 2011-08-26 15:07:40 -05:00
rodzic 2010dae231
commit 96b1460e24
2 zmienionych plików z 11 dodań i 5 usunięć

Wyświetl plik

@ -147,6 +147,9 @@ int csv_parm_save (RIG *rig, const char *outfilename)
if (!ms || !ms[0]) if (!ms || !ms[0])
continue; continue;
ret = rig_get_parm(rig, parm, &val); ret = rig_get_parm(rig, parm, &val);
if (ret != RIG_OK)
return ret;
if (RIG_PARM_IS_FLOAT(parm)) if (RIG_PARM_IS_FLOAT(parm))
fprintf(f, "%f%c", val.f, csv_sep); fprintf(f, "%f%c", val.f, csv_sep);
else else

Wyświetl plik

@ -90,7 +90,7 @@ int main (int argc, char *argv[])
char rig_conf_parms[MAXCONFLEN] = ""; char rig_conf_parms[MAXCONFLEN] = "";
char rot_conf_parms[MAXCONFLEN] = ""; char rot_conf_parms[MAXCONFLEN] = "";
int with_rot = 1; /* int with_rot = 1; */
azimuth_t azimuth; azimuth_t azimuth;
elevation_t elevation; elevation_t elevation;
unsigned step = 1000000; /* 1e6 us */ unsigned step = 1000000; /* 1e6 us */
@ -260,8 +260,8 @@ int main (int argc, char *argv[])
strncpy(rot->state.rotport.pathname, rot_file, FILPATHLEN); strncpy(rot->state.rotport.pathname, rot_file, FILPATHLEN);
/* FIXME: bound checking and port type == serial */ /* FIXME: bound checking and port type == serial */
if (serial_rate != 0) if (rot_serial_rate != 0)
rot->state.rotport.parm.serial.rate = serial_rate; rot->state.rotport.parm.serial.rate = rot_serial_rate;
retcode = rot_open(rot); retcode = rot_open(rot);
if (retcode != RIG_OK && rot_model != ROT_MODEL_DUMMY) { if (retcode != RIG_OK && rot_model != ROT_MODEL_DUMMY) {
@ -269,8 +269,11 @@ int main (int argc, char *argv[])
exit(2); exit(2);
} }
if (rot_model == ROT_MODEL_DUMMY) /* Commenting out to quell "set but not used" warning.
with_rot = 1; * Enable when needed for further functionality. -N0NB
*/
/* if (rot_model == ROT_MODEL_DUMMY) */
/* with_rot = 1; */
if (verbose > 0) if (verbose > 0)
printf("Opened rotator model %d, '%s'\n", rot->caps->rot_model, printf("Opened rotator model %d, '%s'\n", rot->caps->rot_model,