use moments.c to compute moments
[pspp-builds.git] / src / output / html.c
index 043965eeece20d42d1c6489c0b54cf0790b29248..d2c5312ff67306881ecdd6a08d71a0fae7862c87 100644 (file)
@@ -31,7 +31,6 @@
 #include <data/file-name.h>
 #include "error.h"
 #include "getline.h"
-#include "getlogin_r.h"
 #include "output.h"
 #include "manager.h"
 #include "table.h"
@@ -360,7 +359,7 @@ output_tab_table (struct outp_driver *this, struct tab_table *t)
 }
 
 static void
-html_initialise_chart (struct outp_driver *this, struct chart *ch)
+html_initialise_chart (struct outp_driver *this UNUSED, struct chart *ch)
 {
 #ifdef NO_CHARTS
   ch->lp = NULL;
@@ -375,7 +374,7 @@ html_initialise_chart (struct outp_driver *this, struct chart *ch)
   number_pos = strchr (x->chart_file_name, '#') - x->chart_file_name;
   ch->file_name = xasprintf ("%.*s%d%s",
                              number_pos, x->chart_file_name,
-                             x->chart_cnt,
+                             (int) x->chart_cnt,
                              x->chart_file_name + number_pos + 1);
   fp = fopen (ch->file_name, "wb");
   if (fp == NULL)