C++ constructs are not permitted by gcc-2.9x..

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1812 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.2
Stéphane Fillod, F8CFE 2004-08-17 20:41:05 +00:00
rodzic 1385617c85
commit 618aa09eae
2 zmienionych plików z 5 dodań i 6 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Drake backend - main file
* Copyright (c) 2001-2004 by Stephane Fillod
*
* $Id: drake.c,v 1.11 2004-08-12 02:04:30 fineware Exp $
* $Id: drake.c,v 1.12 2004-08-17 20:41:04 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -642,7 +642,7 @@ int drake_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val)
*/
int drake_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
{
int lvl_len, retval;
int lvl_len, retval, ss;
char lvlbuf[BUFSZ];
char mc;
@ -685,7 +685,7 @@ int drake_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
}
lvlbuf[3] = '\0';
int ss = strtol(lvlbuf+1, (char **)NULL, 16);
ss = strtol(lvlbuf+1, (char **)NULL, 16);
val->i = (int)rig_raw2val(ss,&rig->caps->str_cal);
break;
case RIG_LEVEL_PREAMP:

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib JRC backend - main file
* Copyright (c) 2001-2004 by Stephane Fillod
*
* $Id: jrc.c,v 1.14 2004-08-08 20:12:16 fineware Exp $
* $Id: jrc.c,v 1.15 2004-08-17 20:41:05 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -552,8 +552,7 @@ int jrc_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
}
lvlbuf[4] = '\0';
int ss = atoi(lvlbuf+1);
val->i = (int)rig_raw2val(ss,&rig->caps->str_cal);
val->i = (int)rig_raw2val(atoi(lvlbuf+1), &rig->caps->str_cal);
break;
case RIG_LEVEL_SQLSTAT: