Add missing break

(cherry picked from commit d306b34e2f)
Hamlib-4.0
Mikael Nousiainen 2020-10-25 22:14:19 +02:00 zatwierdzone przez Nate Bargmann
rodzic 3b992dde73
commit 5898c1dc1d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F72625E2EDBED598
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -4522,6 +4522,7 @@ int newcat_get_ext_level(RIG *rig, vfo_t vfo, token_t token, value_t *val)
}
val->i = roofing_filter->index;
break;
}
default:
@ -6400,7 +6401,7 @@ static int get_roofing_filter(RIG *rig, vfo_t vfo, struct newcat_roofing_filter
"%s: Expected a valid roofing filter but got %c from '%s'\n", __func__,
roofing_filter_choice, priv->ret_data);
return RIG_ENIMPL;
return RIG_EPROTO;
}
int newcat_get_rx_bandwidth(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t *width)