kopia lustrzana https://github.com/Hamlib/Hamlib
Remove set but unused variable errors in src.
rodzic
b9b270a1fb
commit
f3fe7bffc8
|
@ -342,11 +342,9 @@ static int frontend_set_conf(RIG *rig, token_t token, const char *val)
|
||||||
*/
|
*/
|
||||||
static int frontend_get_conf(RIG *rig, token_t token, char *val)
|
static int frontend_get_conf(RIG *rig, token_t token, char *val)
|
||||||
{
|
{
|
||||||
const struct rig_caps *caps;
|
|
||||||
struct rig_state *rs;
|
struct rig_state *rs;
|
||||||
const char *s;
|
const char *s;
|
||||||
|
|
||||||
caps = rig->caps;
|
|
||||||
rs = &rig->state;
|
rs = &rig->state;
|
||||||
|
|
||||||
switch(token) {
|
switch(token) {
|
||||||
|
|
|
@ -124,11 +124,9 @@ static const struct confparams rotfrontend_serial_cfg_params[] = {
|
||||||
*/
|
*/
|
||||||
int frontrot_set_conf(ROT *rot, token_t token, const char *val)
|
int frontrot_set_conf(ROT *rot, token_t token, const char *val)
|
||||||
{
|
{
|
||||||
const struct rot_caps *caps;
|
|
||||||
struct rot_state *rs;
|
struct rot_state *rs;
|
||||||
int val_i;
|
int val_i;
|
||||||
|
|
||||||
caps = rot->caps;
|
|
||||||
rs = &rot->state;
|
rs = &rot->state;
|
||||||
|
|
||||||
switch(token) {
|
switch(token) {
|
||||||
|
@ -234,11 +232,9 @@ int frontrot_set_conf(ROT *rot, token_t token, const char *val)
|
||||||
*/
|
*/
|
||||||
int frontrot_get_conf(ROT *rot, token_t token, char *val)
|
int frontrot_get_conf(ROT *rot, token_t token, char *val)
|
||||||
{
|
{
|
||||||
const struct rot_caps *caps;
|
|
||||||
struct rot_state *rs;
|
struct rot_state *rs;
|
||||||
const char *s;
|
const char *s;
|
||||||
|
|
||||||
caps = rot->caps;
|
|
||||||
rs = &rot->state;
|
rs = &rot->state;
|
||||||
|
|
||||||
switch(token) {
|
switch(token) {
|
||||||
|
|
Ładowanie…
Reference in New Issue