--- libelwix/src/vars.c 2022/01/24 17:08:21 1.10 +++ libelwix/src/vars.c 2022/01/24 17:22:03 1.11 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: vars.c,v 1.10 2022/01/24 17:08:21 misho Exp $ +* $Id: vars.c,v 1.11 2022/01/24 17:22:03 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -515,7 +515,6 @@ ait_array2vars(const char **args, int dn) ait_val_t *val; register int i; long n; - float f; double d; char *str; @@ -537,11 +536,6 @@ ait_array2vars(const char **args, int dn) n = strtol(*args, &str, 0); if (!str || !*str) { AIT_SET_I64(val, (int64_t) n); - continue; - } - f = strtof(*args, &str); - if (!str || !*str) { - AIT_SET_F32(val, f); continue; } d = strtod(*args, &str);