]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
mantohtml.c: Fix leftovers of strtod()->atof() migration
authorZdenek Dohnal <zdohnal@redhat.com>
Wed, 28 Jun 2023 12:25:51 +0000 (14:25 +0200)
committerZdenek Dohnal <zdohnal@redhat.com>
Thu, 13 Jul 2023 13:30:11 +0000 (15:30 +0200)
man/mantohtml.c

index a46b70ea3a8a78dceea1e214c9e80653a3693a96..b539abab0c93b89873422be9713eea1ee152429d 100644 (file)
@@ -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;