kopia lustrzana https://github.com/Hamlib/Hamlib
Ensure compilation works with a pre C11 compiler
rodzic
d8f05247a1
commit
8465a76fd2
|
@ -1692,9 +1692,10 @@ int icom_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
|
|||
break;
|
||||
case RIG_LEVEL_AGC:
|
||||
if (priv_caps->agc_levels_present) {
|
||||
int found = 0;
|
||||
int found = 0;
|
||||
int i;
|
||||
|
||||
for (int i = 0; i <= RIG_AGC_LAST && priv_caps->agc_levels[i].level >= 0; i++) {
|
||||
for (i = 0; i <= RIG_AGC_LAST && priv_caps->agc_levels[i].level >= 0; i++) {
|
||||
if (priv_caps->agc_levels[i].icom_level == icom_val) {
|
||||
val->i = priv_caps->agc_levels[i].level;
|
||||
found = 1;
|
||||
|
|
|
@ -723,6 +723,7 @@ int dumpcaps(RIG *rig, FILE *fout)
|
|||
|
||||
static int print_ext(RIG *rig, const struct confparams *cfp, rig_ptr_t ptr)
|
||||
{
|
||||
int i;
|
||||
fprintf((FILE *)ptr, "\t%s\n", cfp->name);
|
||||
fprintf((FILE *)ptr, "\t\tType: %s\n", get_rig_conf_type(cfp->type));
|
||||
fprintf((FILE *)ptr, "\t\tDefault: %s\n", cfp->dflt != NULL ? cfp->dflt : "");
|
||||
|
@ -736,7 +737,7 @@ static int print_ext(RIG *rig, const struct confparams *cfp, rig_ptr_t ptr)
|
|||
case RIG_CONF_COMBO:
|
||||
fprintf((FILE *)ptr, "\t\tValues:");
|
||||
if (cfp->u.c.combostr != NULL) {
|
||||
for (int i = 0; i < RIG_COMBO_MAX && cfp->u.c.combostr[i] != NULL; i++) {
|
||||
for (i = 0; i < RIG_COMBO_MAX && cfp->u.c.combostr[i] != NULL; i++) {
|
||||
fprintf((FILE *)ptr, " %d=\"%s\"", i, cfp->u.c.combostr[i]);
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue