From: Zdenek Dohnal Date: Wed, 28 Jun 2023 12:25:51 +0000 (+0200) Subject: mantohtml.c: Fix leftovers of strtod()->atof() migration X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5852e1530a5c6755157dafbaebd13c0bbea39414;p=thirdparty%2Fcups.git mantohtml.c: Fix leftovers of strtod()->atof() migration --- diff --git a/man/mantohtml.c b/man/mantohtml.c index a46b70ea3a..b539abab0c 100644 --- a/man/mantohtml.c +++ b/man/mantohtml.c @@ -588,7 +588,7 @@ main(int argc, /* I - Number of command-line args */ float amount = 3.0f; /* Indentation */ if (line[3]) - amount = (float)atof(line + 4, NULL); + amount = (float)atof(line + 4); fputs(end_fonts[font], outfile); font = 0;