X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=8b062134cde99c0a7f8abf0a02809708fa113dea;hb=173d1687aea88e0e5e1b1d8615ed68ebefb15d08;hp=4fd23184ec37e21def2d34c793a9aa21655c37fe;hpb=4277d80790ded2c83d81a34ed536abe95c925d45;p=pspp diff --git a/src/output/html.c b/src/output/html.c index 4fd23184ec..8b062134cd 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -103,7 +103,7 @@ html_create (const char *file_name, enum settings_output_devices device_type, html->file = fn_open (html->file_name, "w"); if (html->file == NULL) { - error (0, errno, _("error opening output file \"%s\""), html->file_name); + error (0, errno, _("error opening output file `%s'"), html->file_name); goto error; } @@ -112,7 +112,7 @@ html_create (const char *file_name, enum settings_output_devices device_type, fputs ("\n", html->file); fputs ("\n", html->file); print_title_tag (html->file, "TITLE", _("PSPP Output")); - fprintf (html->file, "\n", version); + fprintf (html->file, "\n", version); fputs ("\n", html->file); fputs ("chart_cnt++); if (file_name != NULL) { - fprintf (html->file, "", file_name); + fprintf (html->file, "", file_name); free (file_name); } }