diff options
Diffstat (limited to 'utils/hp2ps')
-rw-r--r-- | utils/hp2ps/HpFile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/hp2ps/HpFile.c b/utils/hp2ps/HpFile.c index f2a01cd3a2..9459247a03 100644 --- a/utils/hp2ps/HpFile.c +++ b/utils/hp2ps/HpFile.c @@ -363,7 +363,7 @@ GetNumber(FILE *infp) If this is an identifier line, the value might exceed the size of 'int', and we are going to convert it to a floatish anyways. */ - thefloatish = atof(numberstring); + thefloatish = (floatish) atof(numberstring); return INTEGER_TOK; } } |