fix: convert "E" to "e"
This commit is contained in:
parent
75797b5d5d
commit
19f91c3ea5
|
@ -338,6 +338,11 @@ int argo_read_number(ARGO_NUMBER *n, FILE *f)
|
||||||
{
|
{
|
||||||
ARGO_CHAR *ptr = string_value;
|
ARGO_CHAR *ptr = string_value;
|
||||||
ptr += length;
|
ptr += length;
|
||||||
|
if (c == 'E')
|
||||||
|
{
|
||||||
|
c = 'e';
|
||||||
|
}
|
||||||
|
|
||||||
*ptr = c;
|
*ptr = c;
|
||||||
length++;
|
length++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user