summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMichael Sweet <michael.r.sweet@gmail.com>2016-04-15 11:35:57 -0400
committerMichael Sweet <michael.r.sweet@gmail.com>2016-04-15 11:35:57 -0400
commit6b4bf984e5f275f0d3fe479c6e081409200e0401 (patch)
treee679e24256c25b7afc8b804be49b6ba0c9e6017c /man
parent68c4690a3b0b018488c01343d3546b1b1fc51090 (diff)
Add remaining binaries that are built by the makefiles.
Fix compiler warning.
Diffstat (limited to 'man')
-rw-r--r--man/mantohtml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/mantohtml.c b/man/mantohtml.c
index 195ae4320..0f4684831 100644
--- a/man/mantohtml.c
+++ b/man/mantohtml.c
@@ -513,7 +513,7 @@ main(int argc, /* I - Number of command-line args */
float amount = 3.0; /* Indentation */
if (line[3])
- amount = atof(line + 4);
+ amount = (float)atof(line + 4);
fputs(end_fonts[font], outfile);
font = 0;
@@ -559,7 +559,7 @@ main(int argc, /* I - Number of command-line args */
float amount = 3.0; /* Indentation */
if (line[3])
- amount = atof(line + 4);
+ amount = (float)atof(line + 4);
fputs(end_fonts[font], outfile);
font = 0;
@@ -592,7 +592,7 @@ main(int argc, /* I - Number of command-line args */
float amount = 3.0; /* Indentation */
if (line[3])
- amount = atof(line + 4);
+ amount = (float)atof(line + 4);
fputs(end_fonts[font], outfile);
font = 0;
@@ -680,7 +680,7 @@ main(int argc, /* I - Number of command-line args */
lineptr ++;
if (isdigit(*lineptr & 255))
- amount = atof(lineptr);
+ amount = (float)atof(lineptr);
if (newlist && list && strcmp(newlist, list))
{